// JavaScript Document
document.write('<table width="100%" height="95" border="0" cellpadding="3" cellspacing="1" background="http://foryoursoft.com/img/head.jpg" class="headbar"><tr><td width="46%" valign="top"><table width="100%" height="50" border="0" cellpadding="0" cellspacing="0"><tr><td width="2%"></td><td valign="middle"> <A href="http://www.foryoursoft.com"><IMG src="http://foryoursoft.com/logo.jpg" width="340" height="46" border="0"></A></td></tr></table></td><td width="54%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="3"><tr><td height="27" align="right" valign="top"><span style="color:#626262"><A href="http://www.foryoursoft.com/index.htm">Home</A> | <A href="http://www.foryoursoft.com/download.htm">Download</A> | <A href="http://www.foryoursoft.com/buy.htm">Buy Now</A> | <A href="http://www.foryoursoft.com/support.htm">Support</A> | <A href="http://www.foryoursoft.com/faq.htm">FAQ</A></span></td></tr><tr><td height="32" align="right" valign="bottom"><span style="color:#FFFFFF;text-align: right;">Language: <select name="language" onChange="LanguageSelect(this.options[this.selectedIndex].value)"><option value="1" selected>English</option><option value="2">Spanish</option><option value="3">French</option><option value="4">German</option><option value="5">Portuguese</option><option value="6">Dutch</option><option value="7">Italian</option></select></span></td></tr></table></td></tr><tr><td colspan="2" align="left" style="color:#626262"> <A href="http://www.foryoursoft.com/reghelp/index.htm">RegistryHelp</A> | <A href="http://www.foryoursoft.com/batchrename/index.htm">BatchRename</A> | <A href="http://www.foryoursoft.com/hypercalendar/index.htm">HyperCalendar</A> | <A href="http://www.foryoursoft.com/fpedit/index.htm">File Property Edit</A> | <A href="http://www.formessengers.com/mlog.htm">MessengerLog</A> | <A href="http://www.formessengers.com/mdetect.htm">Messenger Detect</A></td></tr></table>');

function FormatUrl(Language)
{
	var BaseUrl = "http://translate.google.com/translate?u=";
	
	return BaseUrl + document.URL + "&langpair=en%7C" + Language + "&hl=en&ie=UTF-8";
}

function LanguageSelect(Language)
{
	if(Language == "1") // English
	{
		window.location = "http://foryoursoft.com";
	}
	else if(Language == "2") // Spanish
	{
		window.location = FormatUrl("es");
	}
	else if(Language == "3") // French
	{
		window.location = FormatUrl("fr");
	}
	else if(Language == "4") // German
	{
		window.location = FormatUrl("de");
	}
	else if(Language == "5") // Portuguese
	{
		window.location = FormatUrl("pt");
	}
	else if(Language == "6") // Dutch
	{
		window.location = FormatUrl("nl");
	}
	else if(Language == "7") // Italian
	{
		window.location = FormatUrl("it");
	}
}
 