<!--
function NewWindow(url, windowname, x, y)
{
    var newwin;
    var windowFeatures = "width=" + x + ",height=" + y + ",toolbar=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1";
    newwin = window.open("", windowname, windowFeatures);
    newwin.location.href = url;
    newwin.focus();
}
//-->

