function ToonAbout() {
	if (ns6) {
		stroptions = "height=325,width=330,left=1,top=1,toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
		window.open("about.php", stroptions);
	} else {
		stroptions = "dialogWidth:330px; dialogHeight:325px; center:yes; resizable:no; help:no; scroll:no; status:no;";
		window.showModalDialog("about.php", "", stroptions);
	}
}
/*
function document.onselectstart() {
	objItem = window.event.srcElement.tagName;
	if ((objItem == 'INPUT') || (objItem == 'input') || (objItem == 'textarea') || (objItem == 'TEXTAREA')){
		return true;
	} else {
		return false;
	}
}

function document.ondragstart() { return false; }

function document.onmousedown() {
	if (window.event.button == 2) {
		objItem = window.event.srcElement.tagName;
		if ((objItem != 'input') && (objItem != 'INPUT') && (objItem != 'textarea') && (objItem != 'TEXTAREA')){
			//ToonAbout();
		}
	}
}
*/