// JavaScript Document

// open a Centered Window
function openWin(url,win,myWidth,myHeight){
	var tHeight=screen.height/2;
	var tWidth=screen.width/2;
	var top=tHeight-myHeight/2;
	var left=tWidth-myWidth/2;
	var Feats="width="+myWidth+",height="+myHeight+",top="+top+",left="+left+", screenY=" +top+",screenX="+left+",scrollbars=no, toolbar=no, status=yes, resizable=no,alwayRaised=yes";
	window.open(url,win,Feats);
}
// open a Centered Window with Scrolls
function openWin2(url,win,myWidth,myHeight){
	var tHeight=screen.height/2;
	var tWidth=screen.width/2;
	var top=tHeight-myHeight/2;
	var left=tWidth-myWidth/2;
	var Feats="innerWidth="+myWidth+",innerHeight="+myHeight+",top="+top+",left="+left+", screenY=" +top+",screenX="+left+",scrollbars=yes, toolbar=no, status=yes, resizable=no,alwayRaised=yes";
	window.open(url,win,Feats);
}
