function homecom(w, h, t, comment)
{
        win = new Window({className: "vjtheme", title:t, width:w, height:h, destroyOnClose: true, recenterAuto:false});
		win.getContent().update("<p>" + comment + "</p>");
		win.showCenter(); 
}
function servecom(w, h, t, url, comment)
{
        win = new Window({className: "vjtheme", title:t, width:w, height:h, destroyOnClose: true, recenterAuto:false});
		win.getContent().update("<p>" + comment + "</p><a class=\"popup\" href=\"http://" + url + "\" target=\"_blank\">" + url + "</a>");
		win.showCenter(); 
}
