
//-----funzioni javascript incluse nel template product_info_utente.html--//
function confirm_message(url) {
	conferma = confirm("Sei sicuro di voler procedere?");
	if (conferma == true) {
		location.href = url;
	}
}

function confirm_message_trailer(url) {
	conferma = confirm("Vuoi segnalare questo Trailer come sbagliato?");
	if (conferma == true) {
		location.href = url;
	}
} 
function cart(element,rollover,id) {
	if (rollover == 'on')
		element.src = 'images/cart/' + id + 'b.jpg';
	else if (rollover == 'off')
		element.src = 'images/cart/' + id + '.jpg';
}
//----aggiunta funzione javascript popup----- 
function popupWindow(url) {
var scrollbar;
	if (document.getElementById('imgInteraWidth').value > 640)
	scrollbar = "yes";
	else
		scrollbar = "no";
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrollbar + ',resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}  