//webmail toggle
function toggle( targetId ){
  if (document.getElementById){
        target = document.getElementById( targetId );
           if (target.style.display == "none"){
              target.style.display = "";
           } else {
              target.style.display = "none";
           }
     }
} 
//quicktime window pop up for virtual tours
function qtWin(URL) {
	window.open(URL,"","height=500,width=520,toolbar=0,menubar=0,location=0,menu=0,scrollbars=0,resizable=0");
}
//pop up for terms and privacy
function popupWin(URL) {
	window.open(URL,"","height=380,width=550,toolbar=0,menubar=0,location=0,menu=0,scrollbars=1,resizable=1");
}

function passwordWin(URL) {
	window.open(URL,"","height=200,width=400,toolbar=0,menubar=0,location=0,menu=0,scrollbars=0,resizable=1");
}