// JavaScript Document
function popupNew(name, h, w)
{
        var wid = w + 40;
        var het = h + 60;
        var winl = (screen.width - wid) / 2;
        var wint = (screen.height - het) / 2;
        winprops = 'height='+het+',width='+wid+',top='+wint+',left='+winl+',scrollbars=no,menubars=no,toolbars=no,resizable'
        win = window.open('http://www.ceramico.gr/'+name, 'checkwindow', winprops)
        if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }

}
