

	var contenuto = "";
	contenuto += '<HTML><HEAD><STYLE><!--.generale{ position: absolute; left: -999; top: -999; z-index: 999; cursor: default; background-color: menu; color: menuText; width: 180;visibility: hidden; border-style: outset; border-width: 2px; height: 190}.componenti{ font-family: Ms Shell Dlg; font-size: 12px; padding-left: 10px; padding-right: 10px; padding-top: 3px; padding-bottom: 3px }// --></STYLE></HEAD>';
	contenuto += '<BODY><OBJECT ID="cerca" CLASSID="clsid:B45FF030-4447-11D2-85DE-00C04FA35C89" HEIGHT="0" WIDTH="0"></OBJECT><DIV ID="right_menu" CLASS="generale">';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'reload\')" SPECIFICHE="Aktaulisieren"><IMG SRC="bilder/icon/menu_aggiorna.gif" ALIGN="absmiddle" WIDTH="13" HEIGHT="16">&nbsp;&nbsp;Aktualisieren</DIV>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'back\')" SPECIFICHE="Zur&uuml;ck"><IMG SRC="bilder/icon/menu_indietro.gif" ALIGN="absmiddle" WIDTH="12" HEIGHT="10">&nbsp;&nbsp;Zur&uuml;ck</DIV>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'next\')" SPECIFICHE="Vorw&auml;rts"><IMG SRC="bilder/icon/menu_avanti.gif" ALIGN="absmiddle" WIDTH="12" HEIGHT="10">&nbsp;&nbsp;Vorw&auml;rts</DIV><HR>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'home\')" SPECIFICHE="Als Startseite festlegen"><IMG SRC="bilder/icon/menu_home.gif" ALIGN="absmiddle" WIDTH="14" HEIGHT="14">&nbsp;&nbsp;Als Startseite festlegen</DIV>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'favourite\')" SPECIFICHE="Zu Favoriten hinzuf&uuml;gen..."><IMG SRC="bilder/icon/menu_preferiti.gif" ALIGN="absmiddle" WIDTH="15" HEIGHT="13">&nbsp;&nbsp;Zu Favoriten hinzuf&uuml;gen...</DIV><HR>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'email\')" SPECIFICHE="E-Mail an mich"><IMG SRC="bilder/icon/menu_email.gif" ALIGN="absmiddle" WIDTH="16" HEIGHT="16">&nbsp;&nbsp;E-Mail an mich</DIV>';
	contenuto += '<HR>';
	contenuto += '<DIV CLASS="componenti" ONCLICK="exe(\'info\')" SPECIFICHE="Info & Copyright"><IMG SRC="bilder/icon/menu_info.gif" ALIGN="absmiddle" WIDTH="14" HEIGHT="16">&nbsp;&nbsp;Info & Copyright</DIV>';
	contenuto += '</BODY></HTML>';

	if (document.all && window.print) document.write (contenuto);

	/************************ Menu Script *************************/

	// Select Menu
	function light_on ()
	{
		if (event.srcElement.className == "componenti")
		{
			event.srcElement.style.backgroundColor="highlight";
			event.srcElement.style.color="highlightText";
				if (event.srcElement.SPECIFICHE) 
				{
					window.status = event.srcElement.SPECIFICHE;
				}
		}
	}

	// Deselect Menu
	function light_off ()
		{
		if (event.srcElement.className == "componenti")
		{
			event.srcElement.style.backgroundColor= "menu";
			event.srcElement.style.color="menuText";
			window.status = "";
		}
	}

	// Mostra il menù
	function mostra ()
		{
		if (event.clientY > 0 && event.clientX > 0  &&  event.clientY < document.body.clientHeight && event.clientX < document.body.clientWidth) 
			{
			if (document.body.clientHeight - event.clientY + document.body.scrollTop > document.body.clientHeight / 2)
			{
				right_menu.style.top = event.clientY + document.body.scrollTop;
			} else 
			{
				right_menu.style.top = event.clientY + document.body.scrollTop - 290;
			}

			if (document.body.clientWidth- event.clientX + document.body.scrollLeft > document.body.clientWidth / 2)
			{
				right_menu.style.left = event.clientX + document.body.scrollLeft;
			} else 
			{
				right_menu.style.left = event.clientX + document.body.scrollLeft - 180;
			}
		} else 
		  {
			right_menu.style.top = document.body.scrollTop;
			right_menu.style.left = document.body.scrollLeft;
		  }

		right_menu.style.visibility = "visible";
		return false;

	}

	// Nascondi il menù
	function nascondi ()
	{
			right_menu.style.visibility = "hidden";
			right_menu.style.left = -999;
			right_menu.style.top = -999;

	}

	// Utilities of menu
	function exe (type)
		{
		if (type == "back")

		{
			history.back();
			
		} else if (type == "next")

		{
			history.forward();

		} else if (type == "home")

		{
			document.body.style.behavior='url(#default#homepage)';
			document.body.setHomePage('http://www.frost-art-investment.com');

		} else if (type == "favourite")

		{
			var imgFav= new Image();
			imgFav.src= location.href + "icon/ssw.ico";
			window.external.AddFavorite('http://www.frost-art-investment.com', 'Frost - Art-Investment');
		
		} else if (type == "reload")

		{
			self.location.reload();

		} else if (type == "email")

		{
			location.href="mailto:contact@frost-art-investment.com?subject=WEBSITE-Feedback";

		} else if (type == "info")

		
		{
			alert('Bilder können nur nach Rückfrage weiter veröffentlicht werden.');

		}
	}

	// Impedisce il selezionamento dell'area
	function cancella ()
	{ 
		window.event.cancelBubble = true;
		window.event.returnValue = false;
	}

	// Eventi
	if (document.all && window.print)
	{
		document.oncontextmenu=mostra;
		document.body.onclick=nascondi;
		right_menu.onmouseover=light_on;
		right_menu.onmouseout=light_off;
		right_menu.ondragstart=cancella;
		right_menu.onselectstart=cancella;
	}

