function noRightClick() 
{
alert('Copyright Stella Mare Srl')
return false;
}
document.oncontextmenu = noRightClick; 

function display(image,height,width)
{
	var html = "<HTML><HEAD><TITLE>Photo</TITLE><meta http-equiv=\"imagetoolbar\" content=\"no\">"
	+ "<script type=\"text/javascript\">"
	+ "function noRightClick() {if (event.button==2) {alert('Copyright Stella Mare Srl')}} document.onmousedown=noRightClick"
	+ "</script>"
	+ "</HEAD><BODY>" 
	+ "<IMG SRC='" + image + "' BORDER=0 />"
	+ "</BODY></HTML>";
	var popup = window.open('','BigImage','width='+ width +',height='+ height +'','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
	popup.document.open();
	popup.document.write(html);
	popup.document.focus();
	popup.document.close();
}

function displayVideo(url)
{
	var html = "<HTML><HEAD><TITLE>Video</TITLE>"
	+ "</HEAD><BODY>"
	+ "<embed src=\"/Media/Files/mediaplayer.swf\" width=\"400\" height=\"320\" allowscriptaccess=\"always\" allowfullscreen=\"true\" flashvars=\"file="+ url +"&autostart=true&width=400&height=320\"/>"
	+ "</BODY></HTML>";
	var popup = window.open('','Video','width=420,height=350','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popup.document.open();
	popup.document.write(html);
	//popup.document.focus();
	popup.document.close();
	popup.location.reload();
}