<!--
	function gotoLink(URL){
	window.location.href = URL;
}

function launch(theURL,height, width) {
	//alert(height + "," + width)
	//y = (screen.availHeight - 190) / 2;
	//x = (screen.availWidth - 300) / 2;
	y = ((screen.availHeight / 2) - (height/2));
	x = ((screen.availWidth / 2) - (width/2));
	popUp = window.open(theURL,'popUp','height='+height+',width='+width);
	popUp.moveTo(x,y);
}
//-->