//opening a new window.  pass page, width, and height
function newwindow(page,winname,this_width,this_height) 
{ 
	window.open(page,winname,'menubar=no,location=no,width='+this_width+',height='+this_height+',resizable=no,scrollbars=no'); 
} 

function popLarge(page) 
{ 
	window.open(page,'popWindow','toolbar=0,menubar=0,resizable=1,scrollbars=1,dependent=0,status=0,width=780,height=600,left=25,top=25'); 
} 

function clearField(fieldName) 
{ 
	//var the_field = document.getElementById(fieldName);
	var tempElement = "document.forms[0]." + fieldName;
	var the_field = eval(tempElement);
	if(the_field.value == ' Enter Your Email'){
		the_field.value = '';
	}
} 

