
    function popupwin(url) {
		window.open(url,"map","width=750,height=780,location=0,scrollbars=1,menubar=0,statusbar=0,resizable=1,toolbar=yes");
	}



function newWin(url,target,wW,wH) {

var win_attr = 'left=20,top=20,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrollbars=1,width='+wW+',height='+wH;

newWindow=open(url, target, win_attr);

newWindow.focus();

}




