// JScript File
function PopUp(url,w,h,name)
{
	PopUpWindow = window.open(url,name,"resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,width=" + w + ",height=" + h + ",top=50,left=50");
	PopUpWindow.focus();		
}