function rollover(elem){
	elem.style.cursor='hand';
	elem.className='navover';
	return true;
}
function swapback(elem){
	elem.className='nav';
	return true;
}
function setVars(input){
	input.email.value = input.Email_Address.value;
	input.realname.value = input.Name.value;
}

function terms(){
   mywindow = window.open ("terms.html","mywindow","location=0,status=0,scrollbars=0,width=320,height=200,left=200,top=50");
} 

function showScrShot(swapimage,caption){
	document.getElementById("screenshot").src= "images/scrshots/"+swapimage;
	document.getElementById("caption").innerHTML = caption;
}

function showEmailScrShot(swapimage,caption,height){
	document.getElementById("emailshot_header").src= "images/scrshots/emails/"+swapimage+"_header.gif";
	document.getElementById("emailshot_header").height= height;	
	document.getElementById("emailshot_footer").src= "images/scrshots/emails/"+swapimage+"_footer.gif";	
	document.getElementById("emailcaption").innerHTML = caption;
}