<!--
window.onerror = handleErrors; // or null to suppress error message
function handleErrors(msg, url, line)
{ return true; }

// case studies popup
function popup(mypage) 
{ 
	var wina
	var ht=450;
	var wd=700;
	var wint=(screen.height - ht) / 2; 
	var winl=(screen.width - wd) / 2;
	wina=window.open(mypage, 'samples', 'resizable=1,scrollbars=1,height='+ht+',width='+wd+',top='+wint+',left='+winl+'') 
if (parseInt(navigator.appVersion) >=4) 
{ wina.window.focus(); }
 } 

// add to favorites
function bookmark() {
var url=window.location;
var title="Solar Professional Services, LLC - Phil Friedman";
window.external.AddFavorite(url,title);
}
-->
