/* /////////////////////////////	Input Hover Function/////////////////////////////*/// Open Window Functionfunction popups(daURL) {	window.open(daURL, "popup", "width=460, height=550, scrollbars=yes");}function event_pops() {	// Check to see if browser can handle the methods	if (!document.getElementsByTagName) return; 	if (!document.getElementById) return;	if (!document.getElementById("pareas")) return;		// Get the div element w/ ID 'events'		var link_list = document.getElementById("pareas");	var pwindow = link_list.getElementsByTagName("a"); 		// Attach the event handler		for (i=0; i<pwindow.length; i++) 	{	// Set the function	pwindow[i].onclick = function () {popups(this.getAttribute('href'));return false;}	}}function hov (){	// Grab the inputs 	var cname = document.getElementById("case_1");	var cemail = document.getElementById("case_2");	var cphone = document.getElementById("case_3");	var cinfo = document.getElementById("case_info");		// Attach onfocus handler	cname.onfocus = function ()	{		cname.style.backgroundColor = "#F3E7D7";	}	cemail.onfocus = function ()	{		cemail.style.backgroundColor = "#F3E7D7";	}	cphone.onfocus = function ()	{		cphone.style.backgroundColor = "#F3E7D7";	}	cinfo.onfocus = function ()	{		cinfo.style.backgroundColor = "#F3E7D7";	}		// Attach blur event handler	cname.onblur = function ()	{		cname.style.backgroundColor = "#FFFFFF";	}	cemail.onblur = function ()	{		cemail.style.backgroundColor = "#FFFFFF";	}	cphone.onblur = function ()	{		cphone.style.backgroundColor = "#FFFFFF";	}	cinfo.onblur = function ()	{		cinfo.style.backgroundColor = "#FFFFFF";	}}function sclink() {	var cfc = document.getElementById("case_1");	cfc.focus();}// Initiate the functionwindow.onload = function(){	hov();	event_pops(); }