<!--
//global images preloader
if (document.images){

ln_01	= new Image()
ln_01.src 	= "img/ln_01.gif"
ln_01_ov 		= new Image()
ln_01_ov.src	= "img/ln_01_ov.gif"

ln_02	= new Image()
ln_02.src 	= "img/ln_02.gif"
ln_02_ov 		= new Image()
ln_02_ov.src	= "img/ln_02_ov.gif"

ln_03	= new Image()
ln_03.src 	= "img/ln_03.gif"
ln_03_ov 		= new Image()
ln_03_ov.src	= "img/ln_03_ov.gif"

ln_04	= new Image()
ln_04.src 	= "img/ln_04.gif"
ln_04_ov 		= new Image()
ln_04_ov.src	= "img/ln_04_ov.gif"

ln_05	= new Image()
ln_05.src 	= "img/ln_05.gif"
ln_05_ov 		= new Image()
ln_05_ov.src	= "img/ln_05_ov.gif"

ln_06	= new Image()
ln_06.src 	= "img/ln_06.gif"
ln_06_ov 		= new Image()
ln_06_ov.src	= "img/ln_06_ov.gif"
}

//rollOver handler 
function rollOver(imageName,fileName){
	if(document.images){
	  	document.images[imageName].src=eval(fileName+".src");
	}
}

//open ExternalWindow 
function openPopupWindow(varURL){
	var placeLeft = ((screen.availWidth) / 2) - 250
	var placeTop = ((screen.availHeight) / 2) - 200
	window.open(varURL,'','height=440,width=500,screenX='+placeLeft+',left='+placeLeft+',screenY='+placeTop+',top='+placeTop+',resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,titlebar=no,toolbar=no')
}

// favicon code
document.writeln ("<link rel='shortcut icon' href='img/favicon.ico'>");
//-->