﻿// JScript File

function popupWindow(sURL, iHeight, iWidth) 
{
	sOpt = "'menubar=no,resizable=yes,scrollbars=yes,height="+iHeight+",width="+iWidth+"'";
	win=window.open(sURL,'mywindow',sOpt);
	if (!win.opener) win.opener=self;
	if (win.focus) win.focus();
}
