// JavaScript Document
var sGermanLocations="DE,AT,CH,LU";
var sFrenchLocations="FR,BE,MC";
var sEuropeanLocations="AD,AL,BY,BA,BG,HR,CY,CZ,DK,EE,FI,GR,HU,IS,IE,IT,LV,LI,LT,MK,MT,MD,NL,NO,PL,PT,RO,RU,SM,CS,SK,SI,ES,SE,TR,UA";
if(typeof(sGeobytesLocationCode)!="undefined")
{
	var sCountryCode=sGeobytesLocationCode.substring(0,2);
	if(sGermanLocations.indexOf(sCountryCode)>=0)
	{
		// German Visitors would go here
		document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.squidtechnology.com/de/dehome.htm'>");
	}else if(sFrenchLocations.indexOf(sCountryCode)>=0)
    {
		// French Visitors would go here
		document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.squidtechnology.com/fr/frhome.htm'>");
	}else if(sEuropeanLocations.indexOf(sCountryCode)>=0)
	{
		// European Visitors would go here
		document.write("<META HTTP-EQUIV='Refresh' CONTENT='0; URL=http://www.squidtechnology.com/euro/eurohome.htm'>");      	
	}
	// Visitors from UK and rest of the world so will stay on this page.
}
