function MM_setTextOfLayer(objId,x,newText) 
{ //v9.0
	//var obj = null;
	//if((obj=document.getElementById(objId))!=null)
	//{
	//	obj=document.getElementById(objId);
	//	obj.innerHTML = unescape(newText);
	//}
	with (document)
	if (getElementById && ((obj=getElementById(objId))!=null))
	with (obj) innerHTML = unescape(newText);
}
function drawnav(htmlarg) {
	MM_setTextOfLayer('project_list','',htmlarg)
}
function drawinfo(htmlarg) {
	MM_setTextOfLayer('project_info','',htmlarg)
}
function callExternalInterface(arg) {
	thisMovie("map").displayProject(arg);
}
function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	} else {
    	return document[movieName]
    }
}
