v=0;
function ShowMap(path,w,h)
{
	if (v!=0) v.close();
	h+=30;
	v=window.open ('', 'view', 'scrolling=no,height='+h+',width='+w);
	with (v.document) 
	{
	    open ();
	       write('<html><head><title>Карта проезда</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 ><table cellspacing="0" cellpadding="0" border="0"><tr><td align><img src="'+path+'" border=0></td></tr><tr><td align="center" valign="middle" height="30"><a href="javascript:;" onClick="window.close()">[ закрыть окно ]</a></td></tr></table></body></html>');
	    close ();
	}
	return false;
}

v=0;
function ShowPhoto(path,w,h,name)
{
  if (v!=0) v.close();
  h+=30;
  v=window.open ('', 'view', 'scrolling=no,height='+h+',width='+w);
  with (v.document) 
{
 open ();
  write('<html><head><title>'+name+'</title></head><body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0     bgcolor="#191950"><table cellspacing="0" cellpadding="0" border="0"><tr><td align><img src="'+path+'"     border=0></td></tr><tr><td align="center" valign="middle" height="30"><a href="javascript:;" onClick="window.close()"><font    color="ffffff"><b>[ закрыть окно ]</b></font></a></td></tr></table></body></html>');
  close ();
}
	return false;
}

function popup(fileUrl, winW, winH, winN, scrollB) { 
var winWidth = (winW)? winW : 200; 
var winHeight = (winH)? winH : 200; 
var winName = (winN)? winN : 'popupWin'; 
var scrollBars = (scrollB)? scrollB : 'auto'
posX = Math.round((screen.width - winWidth) / 2); 
posY = Math.round((screen.height - winHeight) / 2);
posCode = "left="+posX+",top="+posY; 
var popupWin = window.open(fileUrl, winName,"menubar=no,toolbar=no,scrollbars=" + scrollBars + ",status=yes,width=" + winWidth + ",height=" + winHeight + "," + posCode); 
if (popupWin) popupWin.focus(); 
} 



