// ___________________________________________________________________________________
// COMMON LIBRARY
// This is the library of shared function, to eliminate dirty coding.
//
// written by Colelinux (http://xetech.org)
// ___________________________________________________________________________________


function getElement(ID) {
	if (isIE) {
		return document.all[ ID ];
	} else {
	if (isDOM) {
		return document.getElementById( ID );
  	}
	}
}

function goURL(URL) {
	window.location.replace(URL); return false;
}

function parent_goURL(URL) {
	parent.window.location.replace(URL); return false;
}

