<!-- //Begin to hide

var fontSize = 18 ;
var FontFamily = 'Verdana' ;
var AltFontFamily = '' ;

function isbSetObj(r) {
	isbObj = (document.getElementById) ? document.getElementById(r) : document.all(r) ;
   }

function isbSetFont(e) {
	isbSetObj(e);
	AltFontFamily = isbObj.style.fontFamily ;
	isbObj.style.fontFamily = FontFamily ;
	if (parseInt(e.substr(0, 2)) < 39) {
		isbObj.dir = (isbObj.dir == 'rtl') ? 'ltr' : 'rtl' ;
	   }
	FontFamily = AltFontFamily ;
   } 

function isbTBgr(e) {
	isbSetObj(e);
	var fontString = (isbObj.style.fontSize != '') ? isbObj.style.fontSize : '15pt' ;
	fontSize = parseInt(fontString.substr(0, 2)) + 3 ;
	if (fontSize > 24) { fontSize = 24 ; }
	isbObj.style.fontSize = fontSize + 'pt' ;
   }
	
function isbTSmr(e) {
	isbSetObj(e);
	var fontString = (isbObj.style.fontSize != '') ? isbObj.style.fontSize : '15pt' ;
	fontSize = parseInt(fontString.substr(0, 2)) - 3 ;
	if (fontSize < 15) { fontSize = 15 ; }
	isbObj.style.fontSize = fontSize + 'pt' ;
   }

function newsite(load) {
	wide = (document.all) ? (screen.AvailWidth - 360) : (screen.width - 360) ;
	msg = window.open("","results","scrollbars=yes,toolbar=no,width=350,height=600,left=" + wide + ",top=0");
	if (navigator.appVersion.indexOf("2.0") != -1 || navigator.appVersion.indexOf("(X11") != -1 || navigator.appVersion.indexOf("(Mac") != -1) {
		msg = window.open("","results","scrollbars=yes,toolbar=no,width=350,height=600,left=" + wide + ",top=0");
	   }
	msg.location.href = load;
	setTimeout('msg.focus()', 100);
   }

function printsite(load) {
	msg = open("","results","scrollbars=yes,toolbar=no,width=550,height=480");
	//You can play with the window site in the line above.
	if (navigator.appVersion.indexOf("2.0") != -1 || navigator.appVersion.indexOf("(X11") != -1 || navigator.appVersion.indexOf("(Mac") != -1) {
		msg = open("","results","toolbar=no,width=510,height=480");
	   }
	msg.location.href = load;
   }

// This is the end -->

