
function inquiryVote(pWhat)
{
	var aPage
	aPage="pg_Inquiry.asp";
	if(pWhat!="") aPage+="?id="+pWhat;
	openWindow(400,80,aPage,"");
}


function servisForm()
{
	openWindow(590,480,"pg-Objednavka.asp");
}

function showModelWeb(pWeb)
{
	openWindow(1000,0,pWeb,"modelDetail");
}


function openWindow(pWidth,pHeight,pWhere,pWindowName)
{
	var aLeft,aTop
	if(pWindowName==""){pWindowName="windowIceAdmin";}
	 aLeft=screen.width-pWidth-18;
	 aTop=screen.height-pHeight;
	 aLeft=(aLeft/2);
	 aTop=(aTop/2);
	 if(pHeight==0){
		 aTop=0;
		 pHeight=screen.height-30;
	 }
	window.open(pWhere,pWindowName,'Left='+aLeft+'px,Top='+aTop+'px,Height='+pHeight+'px,Width='+pWidth+'px,Status=0,toolbar=0,location=0,directories=0,menubar=0,scrollbars=1,resizable=0');
}

