// JavaScript Document

// Language Translating dropbox using Google tools - quangtn.net
var current_url = document.location + " ";
function write_dropbox() {
	var str='';
	str+='<p id="lang">';
	str+='<a href="'+current_url+'"  class="us activec" title="English">&nbsp;</a>';
	str+='  <a href="http://translate.google.com/translate?prev=_t&hl=en&ie=UTF-8&u='+current_url+'&sl=en&tl=fr&history_state0="  class="fr" title="French">&nbsp;</a>';
	str+='  <a href="http://translate.google.com/translate?prev=_t&hl=en&ie=UTF-8&u='+current_url+'&sl=en&tl=es&history_state0="  class="sp" title="Spanish">&nbsp;</a>';
	str+='  <a href="http://translate.google.com/translate?prev=_t&hl=en&ie=UTF-8&u='+current_url+'&sl=en&tl=ja&history_state0="  class="kr" title="Japanese">&nbsp;</a>';
	str+='  <span>Select Language: </span></p>';
	document.write(str);
}
function write_eng(){
	var str='';
	str+='<p id="lang">';
	str+='<a href="'+current_url+'"  class="us activec" title="English">&nbsp;</a>';
	str+='  <span>Select Language: </span></p>';
	document.write(str);
}

function trans_val() {
	if (current_url.indexOf("www.vincentdpetportrait.com") == 7 || current_url.indexOf("vincentdpetportrait.com") == 7) {
	//if (current_url.indexOf("localhost") == 7) {
	 write_dropbox();
	}
}