function printDiv(divId) {	var cssURL="../css/print.css";	var w = window.open('','newwin');	var Html = document.getElementById(divId).innerHTML;  	w.document.write('<body onLoad="window.print();">'+'<link href="'+cssURL+'" rel="stylesheet" type="text/css"/><div id="branding"><img src="../images/assured-guaranty.gif" alt="Assured Guaranty - Family of Companies" /></div><div id="printcnt">'+ Html +'</div></body>');  	w.document.close();	//w.window.setTimeout('close()',250);}function changeBackground(divId) {	var hoverElement=divId;	hoverElement.style.backgroundColor = '#bc7894';		var imghover = document.getElementById('ifa');	imghover.setAttribute("class", "spanhover"); //For Most Browsers	imghover.setAttribute("className", "spanhover"); //For IE; harmless to other browsers.}function resetBackground(divId) {	var hoverElement=divId;	hoverElement.style.backgroundColor = '#810035';	var imghover = document.getElementById('ifa');	imghover.removeAttribute("class", "spanhover"); //For Most Browsers	imghover.removeAttribute("className", "spanhover"); //For IE; harmless to other browsers.}
