var metod="POST";
var postData=null;

var host='http://www.lineagaggioli.it/';
//var host='http://localhost/';
var host='/';



var XMLHttpRequestObject = false;
var action="";
var basketArticle=new Array();
if (window.XMLHttpRequest) {
	XMLHttpRequestObject = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
	XMLHttpRequestObject = new ActiveXObject('Microsoft.XMLHTTP');
}
function getData(dataSource, divID)
	{
	if(XMLHttpRequestObject) {
		//document.getElementById("debugg").style.visibility='visible';
	//	document.getElementById("debugg").innerHTML="aaaa"+ postData;
		 if (postData=='')postData="--";
		//document.getElementById("debugg").innerHTML+="<br>"+ postData;
		if (divID!="void")var obj = document.getElementById(divID);
		XMLHttpRequestObject.open(metod,host+ dataSource);
		//XMLHttpRequestObject.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
		XMLHttpRequestObject.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");

		
		
		
		
		XMLHttpRequestObject.onreadystatechange = function()
		
			{
			if (XMLHttpRequestObject.readyState == 4 &&
			XMLHttpRequestObject.status == 200) {
			if (divID!="void")obj.innerHTML  =XMLHttpRequestObject.responseText;
			
			//postData="";
			
		
			
			}
	}
	XMLHttpRequestObject.send(postData);
}
}


function sendFriend(n){
	getData('site.php?p=text&cmd=sendFriend','sendFriend');
	
	}
	
function sendFriendForm(){
	postData="&sendermail="+ document.getElementById('sendermail').value;
	postData+="&sendername="+ document.getElementById('sendername').value;
	postData+="&destmail="+ document.getElementById('destmail').value;
	postData+="&destname="+ document.getElementById('destname').value;
	postData+="&msg="+ document.getElementById('msg').value;
	
	getData('site.php?p=text&cmd=sendFriend','sendFriend');
	
	}
		
function sendFriendClose(){
	document.getElementById('sendFriend').innerHTML="<div class=bottone><a href=\"javascript:sendFriend()\">Segnala ad un amico</div><br><br>";
	}	
		
function checkSearch(){
	var q=document.getElementById('q').value;
	window.open('/ricerca-mobili/'+ q+ '/','_self');
	return false;
	}
	
	
function newsletterSend(){
	postData+="&email="+ document.getElementById('emailnewsletter').value;
	getData('site.php?p=text&cmd=newsletter','newsletter');
	
	}	
	
	
function formSend(){
	postData="&nome="+ document.getElementById('nome').value;
	postData+="&email="+ document.getElementById('email').value;
	postData+="&telefono="+ document.getElementById('telefono').value;
	postData+="&richiesta="+ document.getElementById('richiesta').value;
	postData+="&codi="+ document.getElementById('codi').value;
	getData('site.php?p=text&cmd=form','form');
	
	}	
	
function formSendFeed(){
	postData="&nome="+ document.getElementById('nomefeed').value;
	postData+="&richiesta="+ document.getElementById('richiestafeed').value;
	postData+="&codi="+ document.getElementById('codi').value;
	getData('site.php?p=text&cmd=formFeed','formFeed');
	
	}
	
	
function confirmAction(str,url){
		if(confirm(str)){
			window.open(url,'_top');
			}
		
		
		}						