//Gallery script

function showPic(whichpic)
{
	if(document.getElementById)
	{
		var largepic = document.getElementById('placeholder');
		largepic.src = whichpic.href;
		largepic.alt = whichpic.title;
		document.getElementById('desc1').innerHTML= largepic.alt;
		
		
		return false;
	}
	else
	{
		return true;
	}
}


//ie6 dropdown hover fix

sfHover = function() {

	var sfEls = document.getElementById("dropDownMenu");



		sfEls.onmouseover=function() {

			this.className="msieFix";

		}

		sfEls.onmouseout=function() {

			this.className=this.className.replace(new RegExp("msieFix\\b"), "");

		}

	}



if (window.attachEvent) window.attachEvent("onload", sfHover);




//scrap

function drop()
{


window.location =  document.form1.dropper.value
document.form1.dropper.selectedIndex = 0
}


function loc()
{


document.DateSelect.action = document.DateSelect.linker.value;

document.DateSelect.submit();
}