/*_________________________________________________POP UP*/
	function popUp(pg, w, h, scr, res) 
	{ 
		if (w == "" || h == "")
		{
			w = (screen.width - 250);
			h = (screen.height - 250);
		}

		larg = screen.width;
		alt = screen.height;

		larg = (larg - w)/2;
		alt = (alt - h)/2;

		window.open(pg, 'p', 'scrollbars=yes, resizable='+res+', width='+w+', height='+h+', top='+alt+', left='+larg+', status=no, location=no, toolbar=no');
	}

	
	// Zoom delle FOTO
	function zoomin(img)
	{
		document.getElementById("bigFOTO").innerHTML = '<img src="'+img+'" alt="'+img+'" width="400" />';
	}

function ajaxModel(idmake)
	{
	var idmake;
	var xmlHttp;
	try
	  {
	  // Firefox, Opera 8.0+, Safari
	  xmlHttp=new XMLHttpRequest();
	  }
	catch (e)
	  {
	  // Internet Explorer
	  try
		{
		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
	  catch (e)
		{
		try
		  {
		  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		catch (e)
		  {
		  alert("Your browser does not support AJAX!");
		  return false;
		  }
		}
	  }
	  xmlHttp.onreadystatechange=function()
		{
		if(xmlHttp.readyState==4)
		  {
			document.getElementById('model').innerHTML = xmlHttp.responseText;
		  }
		}
	  xmlHttp.open("GET","model.asp?idmake="+idmake,true);
	  xmlHttp.send(null);
	}
