// PRINTME

// generates URL query variable 'print' for /print.asp

function printme() {
//	locn = '/print.asp\?print=' + this.location;
	locn = '' + this.location;
	locn_dom = locn.indexOf("/",[7]);
	locn = locn.substring(0,locn_dom);
	locn = locn + '/print.asp\?print=' + this.location;
	prntWindow=open(locn,'printme','toolbar=1,location=1,menubar=0,status=0,directories=0,resizable=1,scrollbars=1,width=600,height=440');

              if (prntWindow.opener == null) prntWindow.opener = self;
	              prntWindow.focus();
	}

function feature_prnt() {

// alert (navigator.userAgent);
if ((navigator.userAgent.indexOf("Mozilla/3.") == -1) && (navigator.userAgent.indexOf("MSIE 4.") == -1) && (navigator.userAgent.indexOf("Mac") == -1)) {
		window.print();
		}
	else {
		alert ("Your browser doesn't support this print function.\nWith a PC, right-click the browser window and select Print from the menu.");
		}
	}
