// JavaScript Document
var popup;
var strArgs;

var intScreenWidth = screen.availWidth;
var intScreenHeight = screen.availHeight;

function openWin(strHref, intWidth, intHeight){
	
	intLeftPos=(intScreenWidth/2) - (intWidth/2);
	intTopPos=(intScreenHeight/2) - (intHeight/2);
	
	strArgs = "height="+intHeight+",width="+intWidth+",status=yes,toolbar=no,menubar=no,location=no,left="+intLeftPos+",top="+intTopPos;
	window.open(strHref,null,strArgs);
}
