// **********************************************************
// funkce pro otevření samostatného okna o dané sířce a výsce
// **********************************************************

function OpenWin(page,imgwidth,imgheight){

var win=window.open('','','toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,left=50,top=50,width='+imgwidth+',height='+imgheight);
	
	win.document.write("");
	win.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'>");
	win.document.write("<head><meta http-equiv='Content-Type' content='text/html; charset=windows-1250' /><link href='css/style_screen.css' rel='stylesheet' type='text/css' /><title>Fotogalerie - kliknutím na obrázek zavřete okno</title></head>");
	win.document.write("<body style='background-color:#CCCCCC; text-align:left;'><a href='#' onclick='window.close();'><img style='border: 1px solid; border-color:#000000; margin-top:10px;' src='"+page+"' alt='Pro zavření klikněte'; align= middle'/></a><table width='100%'><tr><td width='70%' class='popup_addr'><font style='color:#FFFFFF;font-size:14px;font-weight:bold;text-align:left;'>GRANDE-STUDIO</font></td><td width='30%' class='popup_close'><a class='popup' href='#' onclick='window.close();' style='font-size:12px;'>Zavřít</a></td><tr></table></body></html>");
  
}


function OpenWin2(page,imgwidth,imgheight){
  popup = window.open(page,'popupwin','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=' + imgwidth + ',height='+ imgheight);
 
}
