function changeInput(input,text) {
	if (input.value == text) {input.value = '';} 
	else if (input.value.length == 0) {input.value = text;}
}

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

//Popup Images to fit window
function PopupPic(sPicURL) { 
window.open("popup.shtml?"+sPicURL, "", "resizable=1,HEIGHT=2,WIDTH=2");
}
