function show(name, url, w, h)
	{
        w1=w+16;
        h1=h+16;
	openview=window.open("",name,'width='+w1+',height='+h1+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no');
	openview.document.writeln("<HTML><HEAD><TITLE>Туристическая компания &#171;Круиз&#187;. Камчатка.</TITLE></HEAD>");
        openview.document.writeln("<LINK href='../general.css' rel=stylesheet type=text/css>");
	openview.document.writeln("</TITLE></HEAD>");
        openview.document.writeln("<BODY class=pr bgColor='#7370B7' leftMargin='0' topMargin='0' marginwidth='0' marginheight='0'>");
	openview.document.writeln("<DIV align=center>");
	openview.document.writeln("<IMG src='../images/hollow.gif' width='1' height='7' border='0' alt=''><BR>");
	openview.document.writeln("<IMG class=pr src='"+url+"' width='"+w+"',height='"+h+"' border='1' alt=''>");
	openview.document.writeln("</DIV></BODY></HTML>");
	openview.document.close();
	openview.focus();
	 }

