function mapPop( strURL ) {
var strOptions="scrollbars,resizable,height=300,width=300";
	if(strURL == "mapexplain.html"){
		window.open(strURL, 'newWin', strOptions);
	}else{
		window.open('mapexplain.html', 'newWin', strOptions);
	}
}

