function openWindow(url, name, rs, w, h) {
var resize = "";
if (rs) {
resize = "resizable,";
}
popupWin = window.open(url, name, 'scrollbars, status,' + resize + 'width=' + w + ',height=' + h);
}

