
function ViewHtm(strURL,strScreenID,iwidth, iheight)
	{
		LeftPosition = (screen.width - iwidth) / 2;
		if (LeftPosition <= 0)
			{
				LeftPosition = 20
			}
		
		TopPosition = (screen.availHeight - iheight) / 2;
		if (TopPosition <= 0)
			{
				TopPosition = 20;
			}
	
		Width=screen.width - 70;
		Height = screen.availHeight - 70;
		settings='width='+Width+',height='+Height+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no,titlebar=no';		

		sScreenSettings = 'width='+iwidth+',height='+iheight+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=no';		
		window.open(strURL,'_blank',sScreenSettings);
	}	

/*function DelayViewHtm(strURL,strScreenID, iwidth, iheight)
	{
	sJavascript = "ViewHtm('" + strURL + "','" + strScreenID + "','" + iwidth + "','" + iheight + "')";
	setTimeout(sJavascript,"500");

	}
	
*/
