//This script displays Source in popup window 
function ShowSource(url, width, height) {
	if (navigator.appName == "Netscape") {
		//Netscape 3 or 4
		Popup = window.open(url, "ShowSource", 'width=' + width + ',height=' + height + ',resizable=1,scrollbars=0,menubar=0' );
		Popup.focus(); }
	else {
		// IE 4.0
		if ((navigator.appVersion.substring(0, 3) >= "4.0")) {
		Popup = window.open(url, "", 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=0,menubar=0' ); }
		
		else { 
		//IE 3
		Popup = window.open(url, "", 'width=' + width + ',height=' + height + ',resizable=0,scrollbars=0,menubar=0' );}
		}
	 }
//-->

