
function PrinterFriendly(){
	RegExpe = /\?/i.test(document.location);
	if (RegExpe == false){
		PrintUrl = document.location + "?Print=1";
	}
	else{
		PrintUrl = document.location + "&Print=1";
	}
	PrintUrl = PrintUrl.replace(/#/g, "");
	PrintWindow = window.open(PrintUrl,'PrintWindow','width=780,height=550,top=100,left=100,scrollbars=yes,resizable=yes');
	PrintWindow.focus();
}

//popup engine
function PopOpen(linkObj, popWidth, popHeight){
	if(!linkObj.href) return true;
	if(!popWidth) return true;
	if(!popHeight) return true;
	//they are all here
	//open popup win
	popWin = window.open(linkObj.href + '?Blank=1','popWin','width='+popWidth+',height='+popHeight+',top=100,left=100,scrollbars=yes,resizable=no');
	popWin.focus();
	return false;
}
