function document.write() {
		var popup_height=500;
		var popup_width=780;
		var w=window.open('','','height='+popup_height+',width='+popup_width+',toolbar=no,scrollbars=yes')
		var intwidt;
		var intheight;
		intwidth=screen.availWidth;
		intheight=screen.availHeight;
		intwidth=parseInt(intwidth);
		intheight=parseInt(intheight);
		if(intwidth>0&&intheight>0){
			w.moveTo(((intwidth-popup_width) / 2), ((intheight - popup_height) / 2));
			w.focus();
		}
		
		var printarea = document.getElementById("p-printarea")
		if (printarea == null) {
			alert("no print area defined")
		} 
		else {
			w.document.open()
			w.document.write('<html>')
			w.document.write('<head>')
			w.document.write('<title>'+document.title+'</title>')
			w.document.write('<LINK href="http://www.fanlightinc.com/lib/style.css" type=text/css rel=stylesheet>')
			w.document.write('</head>')
			w.document.write('<body>')
			w.document.write('<div align="center">')
			w.document.write('<A HREF="javascript:print()">Print This Page</A>')
			w.document.write(' | ')
			w.document.write('<a href="javascript: self.close()"">Close This Window</A>')
			w.document.write('<div>'+printarea.innerHTML+'</div>')
			w.document.write('</div>')
			w.document.write('</body></html>')
			w.document.close()
		} 	
	}
	function changeColor(newcolor,formTD) {
	formTD.bgColor = newcolor;
}
function BookMark() {
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
    var strURL= document.location;
    var strTitle= document.title;
    window.external.AddFavorite(strURL,strTitle); 
  }
  else {
    alert("This feature is only supported by Internet Explorer Versions 4+.");
  }
}