function ShowWindow(strURL,strName,nHeight,nWidth,bScroll,bResize)
{
	var objWin=window.open(strURL,strName,'height='+nHeight+',width='+nWidth+',channelmode=0,directories=0,fullscreen=0,location=0,menubar=0,resizable='+bResize+',scrollbars='+bScroll+',status=0,toolbar=0,dependent=yes');
	if (objWin)
	{
		 objWin.resizeTo(nWidth,nHeight);
		 objWin.focus();
	}
}