// cps.js

function XOff()
{
 document.write( '<span style="visibility:hidden; font-size: 1px;">' );
}

function SiteTranslation()
// Generate site translation block
{
	c = "";
	c += STLine( "de", "Deutsch" );
	c += STLine( "fr", "Francaise" );
	c += STLine( "es", "Espanol" );
	c += STLine( "it", "Italiano" );
	document.writeln( c );
}

function STLine( cLang, cName )
// Generate translation code for passed language
{
	c = "";
	c += "<A HREF='javascript:void(0)' onClick=" + '"Translate(';
	c += "'" + cLang + "'); return false;" + '">';
	c += "<IMG SRC='/image/Flag" + cLang + ".gif' WIDTH=20 HEIGHT=13 BORDER=0 ALT=";
	c += '"' + cName + '"></A>&nbsp;';
	return c;
}

function Translate( cLang )
{
// Google translation
	c = "http://www.google.com/translate_c?u=http://cellphonesoft.com/";
	c += "&hl=en&langpair=en%7C";
/*
// BabelFish translation
	c = "http://babelfish.altavista.com/babelfish/trurl_load?url=http://cellphonesoft.com/";
	c += "&lp=en_";
*/
	c += cLang;
	parent.location.href = c;
}

