<!--

//For rollovers

function Q_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=Q_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

//Allows custom Windows open with video HTML Location (Code recuction by adding vidlocation variable)

function winOpenVideo(width,height,vidlocation) {
x = (640 - width)/2, y = (480 - height)/2 ;
if (screen) {
y = (screen.availHeight - height)/2 ;
x = (screen.availWidth - width)/2 ;
}
if (screen.availWidth > 1800) { 
x = ((screen.availWidth/2) - width)/2 ; 
}
newWin1 =
window.open( vidlocation,'newWin1','resizable=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);
newWin1.focus();
}

//Menu Fading effect
function lite(obj) {
if(document.all&&!window.opera) {
obj.filters.blendTrans.apply();
obj.filters.blendTrans.play(); }
}


//-->