// $Date: 2008/06/29 17:20:16 $ $Revision: 1.3 $
function glBeforePrint() {
//	if (!is_ie5_5up) return;
	if (typeof(plBeforePrint) == 'function')
		plBeforePrint();
}
function glAfterPrint() {
//	if (!is_ie5_5up) return;
	if (typeof(plAfterPrint) == 'function')
		plAfterPrint();
}
function glLoad() {
//	if (!is_ie5_5up) return;
	try {
		if (typeof(plLoad) == 'function')
			plLoad();
	} catch(e) {
	}

	try {
		for (var i = 1; i <= 10; i++) {
			eval("if (typeof(plLoad"+i+") == 'function') plLoad"+i+"();");
		}
	} catch(e) {
	}
}