function OpenNewWindow(sHTML,sName,iWidth,iHeight)
{
	newwindow=window.open(sHTML,sName,'width=' + iWidth + ' ,height=' + iHeight + ',resizable=1,status=0,menubar=0,scrollbars=1,fullscreen=0');
	if (window.focus) {newwindow.focus()}
	//window.opener.refresh	
}


