// JavaScript Document
function nameFocus()
{
	var el = document.getElementById('yourname');
	if (el.value == 'Name') {
		el.value = '';
	}
}

function nameFocusOut()
{
	var el = document.getElementById('yourname');
	if (el.value == '') {
		el.value = 'Name';
	}
}

function emailFocus()
{
	var el = document.getElementById('email');
	if (el.value == 'Email') {
		el.value = '';
	}
}

function emailFocusOut()
{
	var el = document.getElementById('email');
	if (el.value == '') {
		el.value = 'Email';
	}
}
function commentsFocus()
{
	var el = document.getElementById('comments');
	if (el.value == 'Brief description of needs.') {
		el.value = '';
	}
}

function commentsFocusOut()
{
	var el = document.getElementById('comments');
	if (el.value == '') {
		el.value = 'Brief description of needs.';
	}
}
function turFocus()
{
	var el = document.getElementById('userTuringString');
	if (el.value == 'Type code from above.') {
		el.value = '';
	}
}

function turFocusOut()
{
	var el = document.getElementById('userTuringString');
	if (el.value == '') {
		el.value = 'Type code from above.';
	}
}

function newWindow(curr,width,height)
{
	currWindow = window.open(curr, 'Photos', 'width='+width+',height='+height);
	currWindow.focus;	
}