// JavaScript Document

function visaPages(pageName){
	if(pageName=='compare')
		window.open("compare.html","","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,width=725,height=600");
}

function boxOn(elid,ahid){
	var el=document.getElementById(elid);
	var ah=document.getElementById(ahid);
	el.style.background="#ebf2eb";
	el.style.cursor="pointer";
	ah.style.borderTop="1px solid #ebf2eb";
	ah.style.textDecoration="underline";
}

function boxOff(elid,ahid){
	var el=document.getElementById(elid);
	var ah=document.getElementById(ahid);
	el.style.background="#ffffff";
	ah.style.borderTop="1px solid #12572c";
	ah.style.textDecoration="none";
}

function boxLink(goToURL){
	window.open(goToURL);
}