function onLoad() {

	if (window.onLoadPage)
		onLoadPage();
}

function get( sId ) {
	return document.getElementById( sId );
}

function isIE() {
	return( String( navigator.appName ).toUpperCase().indexOf( "INTERNET EXPLORER" ) != -1 )
}

function isNS() {
	return( String( navigator.appName ).toUpperCase().indexOf( "NETSCAPE" ) != -1 )
}

function insertHtml(sPlaceholderID, sHtml) {

	get(sPlaceholderID).innerHTML = sHtml;
}