/** 
 * AJAX LOAD 
 * Simple site AJAX loading with GET.
 * Attention: This skript works only for sites within
 * the same domain.
 * 
 * @requires jquery 1.2
 * @version 1.2
 * @author Ihsan Baris Bikmaz, copyright (c) 2007 namics ag.
 */
 
 
 /**
  * Load the site in the param. With the strDivId
  * we select only the part with the div with the
  * strDivId.
  * 
  * @param {string}
  * 	Link to the site, which should be loaded
  */
 function ajaxLoad( strLink )
 {
	var strDivId = "#divmapdetail";
 	$( strDivId ).hide();
	$.ajax({
			type	: "GET",
			url		: strLink + '?Show=1',
			success	: function(data) { $(strDivId).html(data).fadeIn("slow"); },
			complete: function (data) { location.href = "#divmapdetail" }
		   });	
	return false;   
 }
