// POP-UP WIN
function popwin(url,x,y)
{
var b10=window.open("","Kep","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+(x+40)+",height="+(y+40));
    b10.document.write("<html>\n<head><title>Comfort System Kft.</title>\n</head>");
    b10.document.write("<body bgcolor='#f7fcfd'>\n");
    // Hasznos terület
    b10.document.write("<div align='center'>\n<table width='15%' border='0' cellspacing='1' bgcolor='#FFFFFF'>\n");
    b10.document.write("<tr>\n<td><img src='",url,"' width='",x,"' height='",y,"'></td>\n</tr>");
    b10.document.write("</table>\n<br>\n");
    // END
    b10.document.write("</body>\n</html>");
}
