/*######################################################################################
# PHP STORE LOCATOR SCRIPT (phpscriptindex.com, phpstorelocatorscript.com)
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#
# NOTICE: (C) DB DESIGN 2007, DO NOT COPY OR DISTRIBUTE CODE WITH OUT PERMISSION
# Code is NOT open source and subject to a software license agreement. You are
# allowed to modify the software to meet the needs of your domain in accordance with
# the software license agreement.
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++#
# SUPPORT: phpstorelocatorscript.com, phpscriptindex.com/support/
# EMAIL SUPPORT: phpsales@gmail.com Monday - Friday 10:00am to 5:00pm EST
######################################################################################*/

function GoogleLanguageHelper(){

	var self = this;
	
	this.quickTranslate = function(langObj,container){
		var handler = function(text){
			container.innerHTML = text;
		}
		this.translate(langObj,handler);
	}
	
	this.translate = function(langObj,handler){
		google.language.translate(langObj.text, langObj.fromlang, langObj.tolang, function(result){
			if(!result.error) {
				handler(result.translation);
			}
		});		
	}
}

function LanguageObject(text,fromlang,tolang){
	this.text = text;
	this.fromlang = fromlang;
	this.tolang = tolang;
}

