// JavaScript Document
function openWindow(url,widthX,heightY){
        if(widthX>heightY){
            leftX=(screen.width-widthX)/2; 
            topY=(screen.width-widthX)/2; }//lezici obdelnik
        else{
            leftX=(screen.width-widthX)/2; //stojici obdelnik
            topY=(screen.height-heightY)/2;
        }
				var okno = window.open(url,'MOTOCARSPORT','width='+widthX+',height='+heightY+',left='+leftX+',top='+topY+',scrollbars=yes,location=no,resizable=yes,copyhistory=no,directories=no'); 
				okno.document.writeln("<html>");
        okno.document.writeln("<head>");
        okno.document.writeln("<title>MOTOCARSPORT.com</title>");
        okno.document.writeln("</head>");
        okno.document.writeln("<body bgcolor=\"black\" topmargin=\"0\" leftmargin=\"0\">");
        okno.document.writeln("<div align=\"center\"><font face=\"Verdana\" size=\"2\" color=\"white\"><< Kliknutím na obrázek zavřete okno >></font></div>");
        okno.document.writeln("<img src=\"" + url + "\" width=\"" + widthX + "\" height=\"" + heightY + "\" alt=\"MOTOCARSPORT.com\" title=\"MOTOCARSPORT.com\" onclick=\"window.close();\" />");
        okno.document.writeln("</body>");
        okno.document.writeln("</html>");
        okno.document.close();
				return false;
}	



