<!--
// Popup function

function popup(url, name, height, width, scrollbars)
{
var popwin;
var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=yes";
opts += ",height=" + height + ",width=" + width + ",scrollbars=" + scrollbars;

popwin=window.open(url,name,opts);
popwin.focus();
//popwin.location = url;
return false;
}
//-->