﻿// JavaScript Document
function SendToAFriend(lang) {
	var urlCurrent = document.location.toString();
	urlCurrent = urlCurrent.replace(/[:]/g,"%3A");
	urlCurrent = urlCurrent.replace(/[?]/g,"%3F");
	urlCurrent = urlCurrent.replace(/[=]/g,"%3D");
	urlCurrent = urlCurrent.replace(/[&]/g,"%26");
	if(lang=="en") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=Download%20this%20free%20high%2DSpeed%20Viewer&amp;body=" + urlCurrent + "'>Click here to forward download link to colleagues</a></h2></p>";
	}
	if(lang=="cn") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=Download%20this%20free%20high%2DSpeed%20Viewer&amp;body=" + urlCurrent + "'>点击此处将下载链接发送给您的合作伙伴</a></h2></p>"
	}
	if(lang=="fr") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=T%E9l%E9chargez%20ce%20Viewer%20ultra%20Rapide%21&amp;body=" + urlCurrent + "'>Cliquer ici pour transférer le lien de téléchargement à un collègue</a></h2></p>"
	}
	if(lang=="de") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=Download%20WorkXPlore%203DViewer%20(kostenfrei)&amp;body=" + urlCurrent + "'>Klicken Sie hier, um diesen Link an Ihre Kollegen weiter zu leiten</a></h2></p>"
	}
	if(lang=="jp") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=Download%20this%20free%20high%2DSpeed%20Viewer&amp;body=" + urlCurrent + "'>Click here to forward download link to colleagues</a></h2></p>"
	}
	if(lang=="es") {
		var mailTo = "<p><h2 id='sendto'><a href='mailto:?subject=iHaga%20clic%20aqu%ED%20para%20descargar%20su%20versi%F3n%20gratuita%20de%20este%20visualizador%203D%20ahora%21&amp;body=" + urlCurrent + "'>Haga clic aquí para enviar el enlace a otros compañeros</a></h2></p>"
	}
	if(lang=="it") {
		var mailTo = "<p><h2 id='sendto' style='margin-left:4px;margin-right:4px;'><a href='mailto:?subject=Scarica%20questo%20visualizzatore%20Ultra%20Fast%21&amp;body=" + urlCurrent + "'>Scarica il link e inoltralo ai tuoi colleghi</a></h2></p>"
	}
	document.write(mailTo);
}
