
function InsertDate( id, datestr, caption )
{
	descText = document.getElementById( id );
	if( descText )
	{
		var processed_caption = "";

		var beginpos = caption.indexOf("#date");

		if( beginpos != -1 )
			processed_caption += caption.substring( 0, beginpos );
		else
			processed_caption += caption;

		if( beginpos != -1 )
		{
			// add code to processed caption
			processed_caption += datestr;
			
			beginpos += 5;
			processed_caption += caption.substring( beginpos );
		}
		descText.innerHTML=processed_caption;
	}
}

function OpenWin( url, width, height )
{
	var pWin=window.open( url,'popup','toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=' + width + ',height=' + height + ',left=20,top=20' );
	pWin.focus();	
}

function OpenListingWin( url )
{
	OpenWin( url, 800, 503 );
}

function dosearch()
{
	if( document.InputForm.city.value == "Sausalito" )
		document.InputForm.name.value = "sausalito";
	else if( document.InputForm.city.value == "Mill Valley" )
		document.InputForm.name.value = "maillvalley";
	else if( document.InputForm.city.value == "Tiburon" )
		document.InputForm.name.value = "tiburon";
	else if( document.InputForm.city.value == "Larkspur" )
		document.InputForm.name.value = "larkspur";
	else if( document.InputForm.city.value == "Corte Madera" )
		document.InputForm.name.value = "cortemadera";
	else if( document.InputForm.city.value == "Greenbrae" )
		document.InputForm.name.value = "greenbrae";
	else if( document.InputForm.city.value == "Kentfield" )
		document.InputForm.name.value = "kentfield";
	else if( document.InputForm.city.value == "Ross" )
		document.InputForm.name.value = "ross";
	else if( document.InputForm.city.value == "San Anselmo" )
		document.InputForm.name.value = "sananselmo";
	else if( document.InputForm.city.value == "San Rafael" )
		document.InputForm.name.value = "sanrafael";
	else if( document.InputForm.city.value == "Fairfax" )
		document.InputForm.name.value = "fairfax";
	else if( document.InputForm.city.value == "Novato" )
		document.InputForm.name.value = "novato";

	return true;
}

function OpenSlideshow( id )
{
	var sWin = window.open( "slideshow.fsp?id="+id,"slideshow","width=565,height=520" );
	sWin.focus();
}

