<!--
function rollOver (imname,over) {
        if (!document.images) {return};
        if (over) { 
        document.images [imname].src = "images/" + imname  + "Dwn.gif";
		}
        else 
        { 
        document.images [imname].src = "images/" + imname  + "Up.gif";		
        }
}

if (document.images) {
    imageLoff = new Image();
    imageLoff.src  = '/images/home/promo/imageLeftOff.gif';
    imageLon1 = new Image();
    imageLon1.src = '/images/home/promo/imageLeft1.gif';
	  imageLon2 = new Image();
    imageLon2.src = '/images/home/promo/imageLeft2.gif';
	  imageLon3 = new Image();
    imageLon3.src = '/images/home/promo/imageLeft3.gif';
    
    imageRoff = new Image();
    imageRoff.src  = '/images/home/promo/imageRightOff.gif';
	  imageRon1 = new Image();
    imageRon1.src = '/images/home/promo/imageRight1.gif';
	  imageRon2 = new Image();
    imageRon2.src = '/images/home/promo/imageRight2.gif';
    imageRon3 = new Image();
    imageRon3.src = '/images/home/promo/imageRight3.gif';
}
  
function change(image,ext) {
    if (document.images)
        document.images[image].src = eval(image + ext + ".src");
}

function openWindow(url,x,y,screenX,screenY,top,left) {
  mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + x + ',height=' + y + ',screenX=' + screenX + ',screenY=' + screenY + ',top=' + top + ',left=' + left);
  mywin.focus();
}

function closewindow() {
  window.close();
}



//-->

