/*
=============================================
 Development By: Infinity Arts Interactive, LLC - www.InfinityArts.com, © Copyright 2008 - All rights reserved.
 Description: iaWEBAPI IDX JS Functions
 Date: 4/26/2008
=============================================
*/

// ============================================================ FUNCTIONS: WINDOW & BROWSER ============================================================
	
	/* // -> Template Functions
	window.onload = function() {
		if (document.getElementById('DIViaWEBAPI_mapList')) {
			iaWEBAPIgmap_load('DIViaWEBAPI_mapList', false);
			iaWEBAPIgmap_loadList();
			
			//window.onscroll = iaWEBAPI_scrollMap;
		} else if (document.getElementById('DIViaWEBAPI_mapProperty')) {
			iaWEBAPIgmap_load('DIViaWEBAPI_mapProperty', true);
			iaWEBAPIgmap_loadList();
		}
	}
	*/

	window.unload = function() {
		iaWEBAPIgmap_unload();
	}	
	
	function iaWEBAPI_docBody() {
		return (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;
	}
	
	function iaWEBAPI_scrollMap() {
		document.getElementById('DIViaWEBAPI_map').style.marginTop = get_XYscrollPos().y+'px';
	}
