<!--//
//Setting the postion of the footer divs
function setFooter(){
varOffset = ((document.getElementById('centered').offsetWidth - 760))/2;
document.getElementById('footer').style.left = varOffset - 3 + "px";
document.getElementById('footerText').style.left = varOffset - 3 + "px";
}

//open ExternalWindow 
function popWindow(varURL,varWidth,varHeight){
	var placeLeft = ((screen.availWidth) / 2) - 250
	var placeTop = ((screen.availHeight) / 2) - 200
	window.open(varURL,'','width='+varWidth+',height='+varHeight+',screenX='+placeLeft+',left='+placeLeft+',screenY='+placeTop+',top='+placeTop+',resizable=yes,scrollbars=yes,location=no,menubar=no,status=no,titlebar=no,toolbar=no')
}
//-->