
function headerSearchValidator(theForm)
{

if 	(theQuickForm.QckSrchTxt.value=="Search by web id # or address." ) 
{
 	 alert("Please enter web ID number, address or street name.");
    theQuickForm.QckSrchTxt.focus();
    return false;
}
if 	(theQuickForm.QckSrchTxt.value=="" ) 
{
 	 alert("Please enter web ID number, address or street name.");
    theQuickForm.QckSrchTxt.focus();
    return false;
}
}


function ShowVHTLink(imgUrl,vhtID,region,width,height){
	var url=(imgUrl!='')?imgUrl:"http://tours5.vht.com/FSSlideshow/grey_previewfullscreen.gif";
	var w=(width!=0)?width:'298';
	var h=(height!=0)?height:'25';
	var src='http://tours5.vht.com/FSSlideshow/custom_slide_show.swf';
	var flashvars='host=http://tours5.vht.com/&path=FSSlideshow/'+vhtID+'/&configuration_file=fss.xml&button_image='+url+'&thumb_height=10&thumb_offset=0&close_bttn_padding=10';
	
	if(region='LI'){
		src="http://tours.vht.com/FSViewer/flash/custom_slide_show.swf";
		
		flashvars='configUrl=http://tours.vht.com/FSViewer/fsdata.aspx?vhtid='+vhtID+'&button_image='+url+'&thumb_height=10&thumb_offset=0&close_bttn_padding=10';
	}
	
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+w+'" height="'+h+'" id="custom_slide_show" align="middle">	');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="allowFullScreen" value="true" />');
	document.write('<param name="bgcolor" value="#000000" />');
	document.write('<param name="FlashVars" VALUE="'+flashvars+'" /> ');
	document.write('<param name="movie" value="'+src+'" />');
	document.write('<param name="quality" value="best" />');
	document.write('<param name="scale" value="noscale" />');
	document.write('<param name="salign" value="lt" />');
	document.write('<embed');
	document.write('src="'+flashvars+'" ');
	document.write('quality="best" ');
	document.write('scale="noscale" ');
	document.write('salign="lt" ');
	document.write('bgcolor="#000000" ');
	document.write('width="'+w+'" ');
	document.write('height="'+h+'" ');
	document.write('name="custom_slide_show" ');
	document.write('align="middle" 	');
	document.write('allowScriptAccess="sameDomain" ');
	document.write('allowFullScreen="true" 	');
	document.write('type="application/x-shockwave-flash" ');
	document.write('pluginspage="http://www.adobe.com/go/getflashplayer" ');
	document.write('FlashVars="'+flashvars+'"');
	document.write('/>');
	document.write('</object>');
}
