var myPageWidth, myPageHeight, mapScrollTop, mapScrollLeft; 	 		
myPageWidth = 962						 							 											
myPageHeight = 400
mapScrollTop = 250																								
mapScrollLeft = 150																								
   	
	/*************************************************************
   	*																														*
   	* updateMiniMap() takes the global variables and passes them *
   	* into the miniMapNav function located in miniMap.asp        *
   	*																														*
   	*************************************************************/
   	function updateMiniMap(){															
  		frames['miniMap'].miniMapNav(mapScrollLeft, mapScrollTop, myPageHeight, myPageWidth)		
  	}
   	
	/*************************************************************
   	*																														*
   	* getObject() takes passed "id" and returns the dom object   *
   	* for the given "id"                                         *
   	*																														*
   	*************************************************************/
   	function getObject(id){
    	var objStyle;
    		if(document.getElementById){											
    			objStyle = document.getElementById(id);
    		}
    		else if(document.all){									 					
    			objStyle = document.all[id];
    		}
    		else {	
    		}
    		return objStyle;
  	}
	
	function loadingScreen(){
		setTimeout("turnOffLoadingScreen()",3000)
	}
	
	function turnOffLoadingScreen(){
		loadingObj = getObject("preloader")
		pulldownObj = getObject("pullDown")
		loadingObj.style.display = "none"
		pulldownObj.style.display = "block"
	}