function convert1()
{
var loc = document.location.toString();
loc = loc.substring(7,loc.length);
if (document.trans1.langpair.selectedIndex != 0) 
{
var newname = window.open('http://translate.google.com/translate_c?langpair=' + document.trans1.langpair.value + "&u=" + document.location,"new_trans");
newname.focus();
return false;
}
else{
	alert('Kindly select a language.');
	document.trans1.langpair.focus();
return false;
}
}

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
condition = !(( (browserName.indexOf("Explorer") >=0 ) && (browserVer < 4) ) ||  ((browserName.indexOf("Netscape") >=0 ) && (browserVer < 2) ) ) ;
if (condition == true  )
    CanAnimate = true;
else
    CanAnimate = false;


