function helloworld()
{
	alert('hello');
}

function convertcurrency(url)
{
	if (url!='none')
	{
		window.open(url,'_blank','menubar=1,resizable=1,width=350,height=250');
	}
}

var message = 'Sicily Property Company - Copyright 2005-2007';
function checkclick(e)
{
	bV  = parseInt(navigator.appVersion)
	bNS = navigator.appName=="Netscape"
	bIE = navigator.appName=="Microsoft Internet Explorer"

   	if (bNS && e.which > 1)
	{
      		alert(message)
      		return false
   	} 
	else if (bIE && (event.button >1)) 
	{
     		alert(message );
     		return false;
	}
}

function click(e)
{
	if (document.all)
	{
		if (event.button==2||event.button==3)
		{
			alert('Copyright Sicily Property Co');
			return false;
		}
	}
	if (document.layers)
	{
		if (e.which == 3)
		{
			alert('Copyright Sicily Property Co');
			return false;
		}
	}
}