function clearField(textBox,startValue)
{
	if (textBox.value.indexOf(startValue)!= -1)
	{
		textBox.value='';
	}
}

function PageChanger(dropdownValue,page)
{
	myString = new String(page)
	if (page.length > 0)
	{
		rExp = "{0}";
		newString = new String (dropdownValue);
		results = myString.replace(rExp, dropdownValue);
	}	
	else
	{
		results = dropdownValue;
	}
	top.location.href = results;
}

/* Pop up for photo gallery */
function openBrWindow(theURL,winName,features) {
        var wHFHI=window.open(theURL,winName,features);
        wHFHI.focus();
}