<!--
//*******  Centerd Popup ***********************	
function centeredPopup (url,target,myWidth,myHeight,scroll) {
var px = (screen.availWidth/2)-(myWidth/2);
var py = (screen.availHeight/2)-(myHeight/2);
if (!scroll) scroll=0;
var myProp ="toolbar=no,resizable=no,status=yes,scrollbars="+scroll+",width="+myWidth+",height="+myHeight+",left="+px+",top="+py;
win=window.open(url,target,myProp);
	}
// -->
