﻿function openW(url,szer,wys){
eval('window.open(url,"","width='+szer+'px,height='+wys+'px,resizable=0,scrollbars=0")') }
//-->

function openWR(url,szer,wys){
eval('window.open(url,"","width='+szer+'px,height='+wys+'px,resizable=1,scrollbars=1")') }
//-->

function creW(url,tyt,szer,wys) {
szerW = szer + 68;
wysW = wys + 68;
if (tyt == ''){tyt = 'foto'}
	newWindow = window.open("","newWindow",'width='+szerW+'px,height='+wysW+'px,resizable=0,scrollbars=0');
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+tyt+'</title></head><body bgcolor="#AAAAAA" leftmargin="32" topmargin="32" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:self.close()"><img border="0" src='+url+' alt='+tyt+'></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
function creWR(url,tyt,szer,wys) {
szerW = szer + 68;
wysW = wys + 70;
if (tyt == ''){tyt = 'foto'}
	newWindow = window.open("","newWindow",'width='+szerW+'px,height='+wysW+'px,resizable=1,scrollbars=1');
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+tyt+'</title></head><body bgcolor="#AAAAAA" leftmargin="32" topmargin="32" onBlur="self.close()">'); 
	newWindow.document.write('<a href="javascript:self.close()"><img border="0" src='+url+' alt='+tyt+'></a>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}