
var cleared = false;

function clearField(field) {
	if( !cleared ) {
		field.value = '';
		cleared = true;
	}
}

function openWindow(theURL, winName, w, h, features) {
	windowFeatures = "width=" + w + ",height=" + h + "," + features;
	newWindow = window.open(theURL, winName, windowFeatures);
	newWindow.resizeTo(w, h);
	if (window.focus) { newWindow.focus() }
}

function showPhoto(url) {
	openWindow("/image.php?" + url + "", "photo", '800', '600', "resizable=1");
}
