function addOnLoad(fn)
{ 
   var old = window.onload;
   window.onload = function()
   {
	   if(old != undefined)
	   {
	       old();
	   }
       fn();
   };
}

addOnLoad(function()
{
	//alert(document.location.href);
	var theurl = document.location.href.replace('http://www.unithistories.com/','');
	if(theurl == 'TESTunits/1st%20ArmyGroup.htm' || theurl == 'TESTunits/1st ArmyGroup.htm')
	{
		var thehead = document.getElementsByTagName('body')[0];
		thelink = document.createElement('link');
		thelink.href = 'http://www.unithistories.com/include/header.css';
		thelink.rel = 'stylesheet';
		thelink.type = 'text/css';
		thelink.media = 'screen';
		thehead.appendChild(thelink);
		
		var thebody = document.getElementsByTagName('body')[0];
		var thefirst = thebody.firstChild;
		var thediv = document.createElement('div');
		thediv.id = 'jck_header';
		thediv.innerHTML = '<h1>World War II unit&nbsp;histories &amp; officers</h1><ul id="imagerow"><li><img src="/units_index/images/frame03.jpg" title="British Field Marshal Bernard Montgomery inspecting troops, Dec. 1944" width="65" height="100"></li><li class="middle_left"><img src="/units_index/images/frame04.jpg" title="Waffen-SS troops fighting in Zeeland (Neth.), May 1940" width="158" height="100"></li><li class="middle_right"><img src="/units_index/images/frame01.jpg" title="Allied attack at Walcheren, November 1944" width="146" height="100"></li><li><img src="/units_index/images/frame02.jpg" title="German general Heinz Guderian, May 1940" width="74" height="100"></li></ul>' + 
						   '<ul id="menu">' + 
						   '<li><a href="/units_index/units.asp">Units</a></li>' + 
						   '<li><a href="/officers/personsx.html">Officers</a></li>' + 
						   '<li><a href="/units_index/documents.asp">Documents</a></li>' + 
						   '<li><a href="/default.asp">Home</a></li>' + 
						   '<li><a href="/contact.asp">E-mail</a></li>' + 
						   '<li><a href="/thanks.asp">Thanks</a></li>' + 
						   '</ul>' + 
						   '<p id="odintext"><a href="http://www.ww2shop.com/" title="WW2Shop.com" target="_blank">This site is sponsored by <strong>WW2Shop.com</strong> - The online webshop specialized in Second World War books.</a></p>';
		thebody.insertBefore(thediv, thefirst);
		
		var thediv = document.createElement('div');
		thediv.id = 'jck_breaker';
		thebody.insertBefore(thediv, thefirst);
		
		
	}
	else if(theurl.substr(0,6)=='units/' || theurl.substr(0,6)=='units_')
	{
		if (window.top == window.self) 
		{
			window.top.location="/units_index/default.asp?file=../" + theurl;
		}
	}
});

// JavaScript Document
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
var t=setTimeout("var pageTracker = _gat._getTracker('UA-2952853-3');pageTracker._initData();pageTracker._trackPageview();",500);