// JavaScript Document

function requestListViaMail(type,format,code){
	var pageout = "/products/request.php";
	//alert("Hello!");
	$('asynchrequest').src = pageout + "?type=" + type + "&format=" + format + "&code=" + code; 
	
}

function requestTXTViaMail(){
 $('asynchrequest').src = "/implementation/txt_requests.php";	
}

txtRequestOK = new Array();
txtRequestOK["IT"] = "Richiesta inviata correttamente!";
txtRequestOK["EN"] = txtRequestOK["DE"] = txtRequestOK["ES"] = txtRequestOK["FR"] = txtRequestOK["CH"] = "Request sent succesfully";

function TXTRequestedOk(lang){
  	alert(txtRequestOK[lang]);
}
