function openMap(wURL){
newWin=window.open("","publicquote","toolbar=no,status=no,scrollbars=no,resizable=yes,width=660,height=690");
newWin.location.href=wURL;
if (navigator.appName.charAt(0) == "N" && navigator.appVersion.charAt(0) >= 3){
newWin.focus();
}
if (navigator.appName.charAt(0) == "M" && navigator.appVersion.charAt(0) >= 3){
newWin.focus();
}
}
