function PrintIt() {
   	var docTitle = document.title
   	var lengthh  = history.length
   	var current  = location.pathname;
	var browser;
	var detect = navigator.userAgent.toLowerCase();
	var xplore = (detect.indexOf("msie") !=-1);
	var num = navigator.appVersion.charAt(0);
	var myWin
	
	if( location.search == "" ) {
	   	current = current.replace(/.asp/gi, ".asp?Print=true"); 
	} else {
	  	current = current + location.search + "&Print=true"; 
	}
	if (xplore && (detect.indexOf("5.") != -1)) {
		num = 5;
	} else {
		num = 4;
	}

	if (xplore && num <=4 ) {
   		myWin = window.open( current, "PrintWindow","width=700,height=600,status=yes,toolbar=yes,menubar=yes,scrollbars=yes" ); 
	} else {
   		myWin = window.open( current, "PrintWindow","width=650,height=500,status=yes,toolbar=yes,menubar=no,scrollbars=yes" ); 
	}
	myWin.focus();
}
