// POPUP

function openWindow(url, w, h, rs, sb) 
{
var windowprops = "width=" + w + ",height=" + h + ",resizable=" + rs + ",scrollbars=" + sb;
//windowprops += "center=yes;border=thin;help=no;status=no;locationbar=no;statusbar=no;locationbar=no;menubar=no;toolbar=no";
popup = window.open(url,'remote',windowprops);

}


