function PreviewThis(intId) {
   	var docTitle = document.title
   	var lengthh  = history.length
   	var current  = '../../../transcript.asp';
	var browser;
	var detect = navigator.userAgent.toLowerCase();
	var xplore = (detect.indexOf("msie") !=-1);
	var num = navigator.appVersion.charAt(0);

   	current = current.replace(/.asp/gi, ".asp?Print=true") + '&id=' + intId; 

	if (xplore && (detect.indexOf("5.") != -1)) {
		num = 5;
	} else {
		num = 4;
	}

	if (xplore && num <=4 ) {
   		var myWin = open( current, "PrintWindow","width=800,height=600,status=yes,toolbar=yes,menubar=yes,scrollbars=yes" ); 
	} else {
   		var myWin = open( current, "PrintWindow","width=650,height=500,status=yes,toolbar=yes,menubar=no,scrollbars=yes" ); 
	}
	
}

function PrintThis(intId) {
   	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);

   	current = current.replace(/.asp/gi, ".asp?Print=true") + '&id=' + intId; 

	if (xplore && (detect.indexOf("5.") != -1)) {
		num = 5;
	} else {
		num = 4;
	}

	if (xplore && num <=4 ) {
   		var myWin = open( current, "PrintWindow","width=800,height=600,status=yes,toolbar=yes,menubar=yes,scrollbars=yes" ); 
	} else {
   		var myWin = open( current, "PrintWindow","width=650,height=500,status=yes,toolbar=yes,menubar=no,scrollbars=yes" ); 
   		myWin.print();
	}
	
}
