function openWindow(url, name, rs, w, h) {
var resize = "";
if (rs) {
resize = "resizable,";
}
popupWin = window.open(url, name, 'scrollbars,menubar,' + resize + 'width=' + w + ',height=' + h);
}
function map() {
popupWin = window.open('map.htm', 'remote', 'width=420,height=510,left=10,top=100')
}
function map2() {
popupWin = window.open('map2.htm', 'remote', 'width=420,height=480,left=10,top=100')
}
function map3() {
popupWin = window.open('map3.htm', 'remote', 'width=420,height=480,left=10,top=100')
}

