// JavaScript Document

function popUpPlayer() {
props=window.open('../player/wimpy.php', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=500, height=300 left = 100, top = 100');
}

function popupPhoto(photo) {
	document.getElementById(photo).style.display="block"; 
}

function previousPhoto(current, previous) {
	document.getElementById(current).style.display="none"; 
	document.getElementById(previous).style.display="block"; 
}

function nextPhoto(current, next) {
	document.getElementById(current).style.display="none"; 
	document.getElementById(next).style.display="block"; 
}

function closePhoto(current) {
	document.getElementById(current).style.display="none"; 
}

function clearField(text) {
	if (text.value == text.defaultValue) {
		text.value = ""
	}
}

function defaultField(text) {
	if (text.value == "") {
		text.value = text.defaultValue
	}
}