/*	check to see if:
	- the URL variable "view" exists
	- that the value of said variable is "print"
	- that browserType is not "isONN"
*/
	var ckPF = document.location.toString();
	if ((ckPF.indexOf('view')>-1) && (ckPF.indexOf('print')>-1) && !(ckPF.indexOf('isONN')>-1)) {
		document.location.replace("?browserType=isONN&view=print");
	}

