
function googleLink(aaa, bbb, ccc) { 
output='<A HREF="http://www.google.com/custom?q=' ;
inner= "" + aaa ;
if (bbb!="") {inner = inner + '%2B' + bbb} ;
if (ccc!="") {inner = inner + '%2B' + ccc} ;
output=output+inner+'&sa='+inner +'&client=pub-4779551745272676&forid=1&ie=ISO-8859-1&oe=ISO-8859-1' ;
output=output+'&safe=active&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter' ; 
output=output+'%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF' ;
output=output+'%3BGIMP%3A0000FF%3BFORID%3A1%3B&hl=en" TARGET="_blank">'+aaa+' '+bbb+'</A>' ;
document.write(output);
}

function getGoogleLink(aaa, bbb, ccc, linkString) {
//alert("getGoogleLink has been called");
//if (aaa==null) {aaa = Google;};  if (bbb==null) {bbb = "";};  if (ccc==null) {ccc = "";};
//if (linkString==null OR linkString=="") {linkString=aaa+' '+bbb+' '+ccc;} ;
//alert(AAA +"   "+BBB+"   "+CCC+"   "+aaa+"   "+bbb+"   "+ccc);
googleLink='<A HREF="http://www.google.com/custom?q=' ;
inner= "" + aaa ;
if (bbb!="") {inner = inner + '%2B' + bbb} ;
if (ccc!="") {inner = inner + '%2B' + ccc} ;
googleLink=googleLink+inner+'&sa='+inner +'&client=pub-4779551745272676&forid=1&ie=ISO-8859-1&oe=ISO-8859-1' ;
googleLink=googleLink+'&safe=active&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter' ; 
googleLink=googleLink+'%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF' ;
googleLink=googleLink+'%3BGIMP%3A0000FF%3BFORID%3A1%3B&hl=en" TARGET="_blank">'+linkString+'</A>' ;
return googleLink ;
}


