function openShoppingCart(pCode,pPrice,pName) {
	var url = "ShoppingCart.aspx?ProductCode="+ pCode +"&ProductPrice="+ pPrice +"&ProductName=" + pName;
	openShoppingCartPage(url);
}

function openShoppingCartPage(url) {
	if (!url)
		url = "ShoppingCart.aspx";
	window.open(url,'','toolbar=no,scrollbars=auto'); //,height=300,width=700
}

function resizeWindowByContent() {
	var x = document.getElementById("Table1").offsetWidth;
	var y = document.getElementById("Table1").offsetHeight;
	if (window.navigator.appName.toLowerCase().indexOf("netscape")>-1) {
		window.innerHeight = y;
		window.innerWidth = x;
	} else {
		window.resizeTo(x,y + 82);
	}
	window.moveTo(100,100);
}

// animazione tab laterali

var obj_width = 0;

function evidenzia(obj){
	obj_width = obj.offsetWidth;
	if ((obj_width) * 1.20 <= 150)
		obj.width = (obj_width) * 1.20;
	else
		obj.width = 150;
}
function ritorna(obj) {
	obj.width = obj_width;
}

