

function dyn_window(url, h, w, l, t) 
{
var popit = window.open(url, "","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes, height=" + h + ",width=" + w + ",left=" + l + ",top=" + t + "");
}

function dyn_window_re(url, h, w, l, t)
{
var popit = window.open(url, "","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes, height=" + h + ",width=" + w + ",left=" + l + ",top=" + t + "");
}

