function openWindow(url,widthX,heightY)
{
	var windows ="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=";
		windows+=widthX;
		windows+=",height=";
		windows+=heightY;
		windows+="screenX=0,screenY=0,top=0,,left=100";//
	window.open(url,'_blank',windows)
}

function popupWindow(url,widthX,heightY)
{
		var windows ="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=";
		windows+=widthX;
		windows+=",height=";
		windows+=heightY;
		windows+="screenX=0,screenY=0,top=0,left=100";//
		window.open(url,'_blank',windows)	
}

function popupScrollWindow(url,widthX,heightY)
{
	var windows ="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=";
		windows+=widthX;
		windows+=",height=";
		windows+=heightY;
		windows+="screenX=0,screenY=0,top=0,,left=100";//
	window.open(url,'_blank',windows)
}