function showImage(file, width, height) {
	window.open ("/galleryView.php?file=" + file + "&width=" + (width + 20) + "&height=" + (height + 20), "galleryImage", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=" + (width + 20) + ", height=" + (height + 20))
}
function focusText(inp, text) {
	if(inp.value == text)
		inp.value = '';
}
function blurText(inp, text) {
	if(inp.value == '')
		inp.value = text;
}