<!--
if (self.name==top.name) 
{ 
document.write('<frameset rows="110,*" cols="*" framespacing="0" frameborder="no" border="0" bordercolor="#CCCCCC">')
document.write('<frame src="/testata.htm" name="topFrame" frameborder="NO" scrolling="NO" noresize bordercolor="#CCCCCC"">')
document.write('<frameset rows="*" cols="15%,70%,15%" frameborder="no" bordercolor="#CCCCCC">')
document.write('<frame src="/menuSX.htm" name="SXFrame" frameborder="NO" scrolling="NO" noresize bordercolor="#CCCCCC"> ')
document.write('<frame name="principale" frameborder="YES" bordercolor="#CCCCCC" src='+document.location.href+'?a>')
document.write(' <frame src="/menuDX.htm" name="DXFrame" frameborder="NO" scrolling="NO" noresize bordercolor="#CCCCCC">')
document.write('</frameset>') 
document.write('</frameset>') 
}
//-->

<!--
parent.document.title = document.title;
// -->

<!--
function openPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->

<!--
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->

<!--
var xmlhttp;
function getCartBox(id_user, id_product, act){
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null){
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url="cart.php";
	url=url+"?box=true&id_user="+id_user+"&id_product="+id_product+"&act="+act;
	xmlhttp.open("GET",url,true);
	xmlhttp.onreadystatechange=stateChanged;
	xmlhttp.send(null);
}

function stateChanged(){
	if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete"){
		if (xmlhttp.status == 200){
			document.getElementById("cart").innerHTML=xmlhttp.responseText;
		}
	}
}

function GetXmlHttpObject(){
	if (window.XMLHttpRequest){
		// code for IE7+, Firefox, Chrome, Opera, Safari
		return new XMLHttpRequest();
	}
	if (window.ActiveXObject){
		// code for IE6, IE5
		return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}

<!--
function hideDiv(div) {
	top.document.getElementById(div).style.display = "none";  
}
//-->

<!--
function showDiv(div) {
	top.document.getElementById(div).style.display = 'block';
}
//-->