<!--
if (document.images) {
arImageSrc = new Array (
//nav preload
//xPath+ "images/contactUp.gif",
//xPath+ "images/contactDwn.gif"
)

arImageList = new Array ();

for (counter in arImageSrc) {
arImageList[counter] = new Image ();
arImageList [counter].src = arImageSrc [counter];
}
};


function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


function rollOver (imname,over) {
        if (!document.images) {return};
        if (over) { 
        document.images [imname].src = xPath + "images/" + imname  + "Dwn.gif";
		}
        else 
        { 
        document.images [imname].src = xPath + "images/" + imname  + "Up.gif";		
        }
}




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 openWindowResize(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=1,width=' + x + ',height=' + y + ',screenX=' + screenX + ',screenY=' + screenY + ',top=' + top + ',left=' + left);
mywin.focus();
}

function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}

function closeWindow()
{
  window.close();
}

function jump(myForm)
{
url = myForm.jumpToCountry.options[myForm.jumpToCountry.selectedIndex].value;
window.location = url;
}

//-->
