// Mantello
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			oncontextmenu='return false';
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			oncontextmenu='return false';
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;") 

// Indice
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

function imgON(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "ON.src");
	}
}
function imgOFF(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "OFF.src");
	}
}

// Links
<!--
function newwindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);}
//-->


//Bookmark
var bookmarkurl="http://www.medicinaesteticavm.it"
var bookmarktitle="Medicina Estetica - Dott. Vincenzo Mastrogivanni"

function addbookmark() {
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
