function ImageWin() {
       var vlastnosti = "width=200, height=200, toolbar=0, location=0, status=no, menubar=0, directories=0, resizable=1, scrollbars=0";
       var aboutWindow = window.open("", "imagewin", vlastnosti);
       aboutWindow.focus();
}

function zoom(URL,winName,features) {

	okno=window.open('',winName,features);
	okno.document.write('<HTML><TITLE>Regatta 2006</TITLE><BODY style="margin:0; padding:0;">');
	okno.document.write('<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center">');
	okno.document.write('<a href="javascript:window.close()"><IMG SRC="'+URL+'" border="0" alt=":: close ::" style="border: 4px solid #FFFFFF;"></a>');
	okno.document.write('<td><tr></table></BODY></HTML>');
	okno.document.close();
	okno.focus();
	okno.document.bgColor="C2C9DC";

}

function newWin(URL) {
	okno=window.open(URL,'blank');
	//okno.document.close();
	okno.focus();
	return false;
}

function newWinSize(URL) {
    var img = new Image();
    img.src = URL;
    var w = img.width+35;
    var h = img.height+30;
	var okno = window.open(URL, "blank", "toolbar=0, location=0, scrollbars=1, width="+w+", height="+h+", resizable=1");
	okno.focus();
	return false;
}

