//
// This function determines if the wrapper was called before the html file by checheck the value of cms_wrapload
// If cms_wrapload = 0 then file has been called directly and not via the wrapper.
// Redirect window location to the wrapper for this site by using file name + externsion name
//

if (!cms_wrapload)
{
	
	if (window.location.pathname == '/')
	{
		window.location.href = cms_xmlDoc.getElementsByTagName("home")[0].childNodes[0].nodeValue+'.'+
		cms_xmlDoc.getElementsByTagName("serverside")[0].childNodes[0].nodeValue;
	}
	else
	{
		if (window.location.pathname.substring(window.location.pathname.lastIndexOf('/')+1,window.location.pathname.lastIndexOf('.')).length < 1)
		{
			window.location.href = cms_xmlDoc.getElementsByTagName("home")[0].childNodes[0].nodeValue+'.'+
			cms_xmlDoc.getElementsByTagName("serverside")[0].childNodes[0].nodeValue;
		}
		else
		{
			window.location.href = window.location.pathname.substring(window.location.pathname.lastIndexOf('/')+1,window.location.pathname.lastIndexOf('.'))+'.'+cms_xmlDoc.getElementsByTagName("serverside")[0].childNodes[0].nodeValue;
		}
	}
}