
function lingo(form1) 
   { 

	
	var linkdata="#";
	if (form1.language.selectedIndex == 1) linkdata="arabic_index.htm"; 
	if (form1.language.selectedIndex == 2) linkdata="chinese_index.htm"; 
    if (form1.language.selectedIndex == 3) linkdata="dutch_index.htm"; 
	if (form1.language.selectedIndex == 4) linkdata="french_index.htm"; 
	if (form1.language.selectedIndex == 5) linkdata="german_index.htm";
    if (form1.language.selectedIndex == 6) linkdata="japanese_index.htm"; 
	if (form1.language.selectedIndex == 7) linkdata="russian_index.htm";
	if (form1.language.selectedIndex == 8) linkdata="spanish_index.htm";
	if (form1.language.selectedIndex == 9) linkdata="index.htm";
	if (form1.language.selectedIndex == 10) linkdata="italian_index.htm";
	if (form1.language.selectedIndex == 11) linkdata="http://gr.nettranslation.co.uk/index.htm";

	parent.location.href=linkdata;


  }		


function selectfunction()
{
document.write('<form name="form" method="post" action="">');
document.write('<select onChange=lingo(this.form) name="language" class="chooselang">');
document.write('<option value="lang">Choose Language</option>');
document.write('<option value="arabic">- - - - - Arabic - - - - </option>');
document.write('<option value="chinese">- - - - - Chinese - - - </option>');
document.write('<option value="dutch">- - - - - Dutch - - - - - </option>');
document.write('<option value="french">- - - - - French - - - - -</option>');
document.write('<option value="german">- - - - - German - - - - </option>');
document.write('<option value="japanese">- - - - - Japanese - - -</option>');
document.write('<option value="russian">- - - - - Russian - - - -</option>');
document.write('<option value="spanish">- - - - - Spanish - - - -</option>');
document.write('<option value="english">- - - - - English - - - -</option>');
document.write('<option value="italian">- - - - - Italian - - - - </option>');
document.write('<option value="greek">- - - - - Greek - - - - - </option>');
document.write('</select>');
document.write('</form>');

}