function ShowPg(URL,szer,wys)
{
	wys = wys + 80;
	newWindow=window.open(URL,'newWin','width=' + szer + ',height=' + wys + ',resizable=0,scrollbars=no,menubar=no');
	newWindow.focus();
}
