
///  <!--Barra de titulo .
var txt= document.title;
var refresco=null;
function titulo() {
document.title=txt;
txt=txt.substring(1,txt.length)+txt.charAt(0); 
refresco=setTimeout("titulo()",300);
}
// -->

///   Scroll en la barra de estado.

//var txt="Esta es la primera linea de texto que se desplaza "
// + " y esta es la segunda, puedes poner todas las"
// + " que quieras !                     "; 

//function scrollbarest()
//{
//  window.status = txt;
//  txt = txt.substring(1, txt.length) + txt.charAt(0);
//  window.setTimeout("scrollbarest()",300);
//}
//Expopack
//"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"
//"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"
<!--  
function getRemaining() {
  today = new Date();
  targetdate = new Date("Dec 31, 2010"); 
  targetdate.setYear(today.getYear()); 
  //days
  milliseconds = (24 * 60 * 60 * 1000); 
  dia = ((targetdate.getTime() - today.getTime()) / milliseconds);
  dia = Math.round(dia);
   sday = dia + " days ";
   remaining = sday;
   
  //minuts 
   milliminut = (24 * 60 * 1000); 
   hora = ((targetdate.getTime() - today.getTime()) / milliminut);
   hora = Math.round(hora);
   shora = hora + " Hours ";
   remaining += shora ;
   
     //minuts 
   millihor = (60 * 1000); 
   minut = ((targetdate.getTime() - today.getTime()) / millihor);
   minut = Math.round(minut);
   sminut = minut + " Minuts ";
   remaining += sminut ;
   
  }
// -->

//Good
	var dt = new Date();
	var hr = dt.getHours();
	var msgood;
	msgood = ((hr>11)&&(hr<16) ? "Night" : msgood);
	msgood = ((hr <= 12) ? hr : hr - 12);
	msgood = ((hr<12) ? "Morning" :"Evening");
	msgood="Good "+ msgood;
	
// NEWS CSS	
<!--
var current = 0
var x = 1
var speed = 100
var speed2 = 2000

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}
  getRemaining()
  remaining;
 // "Missing for "+remaining+" days ExpoPack 2009";
typ = new initArray(11)
typ[0]=".:.:.:.:. Hello..." + msgood+" .:.:.:.:.";
typ[1]=".:.:.:.:. Welcome to Custom Sales and Systems .:.:.:.:.";
//typ[2]=".:.:.:.:. Missing for "+remaining+" for New Year 2010 !!! .:.:.:.:.";
//typ[3]=".:.:.:.:. :-) Happy Christmas and a Happy New Year :-) !!! .:.:.:.:.";
typ[2]=".:.:.:.:. With over 20 years of experience provides Inspection Systems, Quality Control instrumentation and Packaging Equipment .:.:.:.:.";
typ[3]=".:.:.:.:. Product Lines: A-B-C Packaging Machine Corporation, Air Force 1, Anritsu, Axon-Styrotech, BBULL, Domino, Ebro .:.:.:.:."; 
typ[4]=".:.:.:.:. Product Lines: Emhart Inex, FCI Inc, Fowler-Zalkin, Garvey Corporation, Goodman Packaging, Hach Company, Hach Ultra .:.:.:.:.";
typ[5]=".:.:.:.:. Product Lines: Hess Machine International, McBrady Engineering, Orion Packaging, Taptone, Triangle Package Machinery Company .:.:.:.:.";
typ[6]=".:.:.:.:. Product Lines: Tri-Tronics, Unisensor, Unispray Systems, Vacuum Barrier Corporation, W. Amsler Equipment Inc. , Welger .:.:.:.:.";
typ[7]=".:.:.:.:. Product Type: Air Blow Off Systems, Bottle Cleaners and Rinsers, Capping, Change Parts, Fillers, Gas Analizers CO2 O2 O3 .:.:.:.:.";
typ[8]=".:.:.:.:. Product Type: Inspection Equipment, Laser Coding Systems, Liquid Nitrogen Dosing, Ozone Generators, Packaging Equipment .:.:.:.:.";
typ[9]=".:.:.:.:. Product Type: Photoelectric Sensors, Seals and Nozzles, Shrink Wrap Bands, Stretch Wrap Equipment, Waste Management .:.:.:.:.";
typ[10]=".:.:.:.:. Product Type: Shrink Wrap Bands, Stretch Wrap Equipment, Waste Management .:.:.:.:.";
typ[11]=".:.:.:.:. Thank you for visiting our Web-Site: www.CSS FL.com .:.:.:.:.";
function typewrite() {
var m = typ[current]

window.status = m.substring(0, x++) + "_"

if (x == m.length + 1) {
x = 0
current++

if (current > typ.length - 1) {
current = 0
}

setTimeout("typewrite()", speed2)
}

else {
setTimeout("typewrite()", speed)
}
}

typewrite()
//-->
