//------------------- OPEN NEW WINDOW -------------------//



// generic window //

function EZowin(url) { //1.0

  window.open(url,'ezPopUp','width=400, height=325, resizable=0,scrollbars=yes,menubar=no,directories=0,status=0,copyhistory=0,minimise=no,maximise=no,left=0,top=0');

}



// php window (bna & virtual tours) //

function owin(url, boolIsIndexPage) { //iView v1.0

	if (boolIsIndexPage==true){

		window.open(('php/iView.php?var=' + url),'UPpopup','width=600, height=420, resizable=0,scrollbars=0,menubar=no,directories=0,status=0,copyhistory=0,minimise=no,maximise=no,left=0,top=0');

	} else {

		window.open(('../php/iView.php?var=' + url),'UPpopup','width=600, height=420, resizable=0,scrollbars=0,menubar=no,directories=0,status=0,copyhistory=0,minimise=no,maximise=no,left=0,top=0');

	}

}





//------------------- for clearing and replacing text in form input fields and textareas -------------------//

function clearText(thefield) {

  if (thefield.defaultValue==thefield.value) { thefield.value = "" }

} 

function replaceText(thefield) {

  if (thefield.value=="") { thefield.value = thefield.defaultValue }

}



// flash  //

function remoteflash() {

	document.write('<embed src="flash/flash.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="700" height="215"></embed>');

}