function PopUpWindow(sAdresa, iSirka, iVyska)
{
	window.open(sAdresa, '', 'width='+iSirka+'px, height='+iVyska+'px, left=100, top=30, resizable=yes, titlebar=no, status=yes, address=no, scrollbars=no');
}

function Fpanorama( url, xwidth, xheight)
{
	iMyWidth = (window.screen.width - xwidth ) / 2 ;
	iMyHeight = (window.screen.height - xheight ) / 2; 
	
	window.open(url, "panorama","height="+xheight+",width="+xwidth+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=auto, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,directories=no,resizable=no");
}


