<!--
function popupprint(strFileName, intWidth, intHeight,strScroll, strTitle) {	
var parameters = 'TOOLBAR=YES,LOCATION=NO,DIRECTORIES=NO,STATUS=NO,MENUBAR=NO,SCROLLBARS='+ strScroll +',RESIZABLE=NO,COPYHISTORY=YES,WIDTH='+ intWidth +',HEIGHT='+ intHeight; window.open(strFileName, strTitle, parameters);
}

function popup(strFileName, intWidth, intHeight,strScroll, strTitle) {	
var parameters = 'TOOLBAR=NO,LOCATION=NO,DIRECTORIES=YES,STATUS=YES,MENUBAR=NO,SCROLLBARS='+ strScroll +',RESIZABLE=YES,COPYHISTORY=YES,WIDTH='+ intWidth +',HEIGHT='+ intHeight; window.open(strFileName, strTitle, parameters);
}

function popupforum(strFileName, intWidth, intHeight,strScroll, strTitle) {	
var parameters = 'TOOLBAR=YES,LOCATION=NO,DIRECTORIES=NO,STATUS=NO,MENUBAR=NO,SCROLLBARS='+ strScroll +',RESIZABLE=YES,COPYHISTORY=YES,WIDTH='+ intWidth +',HEIGHT='+ intHeight; window.open(strFileName, strTitle, parameters);
}

function printpage (){
	if ((((navigator.platform=='Mac68k') || (navigator.platform=='MacPPC'))&&(document.all))||((document.all)&&(!document.getElementById))) {
	}
	else {
	print();
	}
}

//-->