// JavaScript Document
function itemFocus(element,value)
{
	var el = document.getElementById(element);
	if (el.value == value) {
		el.value = '';
	}
}
function itemFocusOut(element,value)
{
	var el = document.getElementById(element);
	if (el.value == '') {
		el.value = value;
	}
}
function newWindow(curr){
	currWindow = window.open(curr, 'Photos', 'width=320,height=280');
	currWindow.focus;
}