var cP = navigator.appName;
function click(e) {
	str = "© Copyright protected-Unauthorized Reproduction Prohibited - DALIA.com";
	if (cP=='Microsoft Internet Explorer') // IE
	{
		if (event.button==2||event.button==3)
		{
			str = str + "";
			str = str + "";
			alert (str);
			return false;
		}
	}
	else { // Firefox
		if (e.button==2||e.button==3)
		{
			e.preventDefault();
			e.stopPropagation();
			alert (str);
			return false;
		}
	}
}

if (cP=='Microsoft Internet Explorer') // IE
{
  document.onmousedown=click;
}
else // for FF
{
  document.onclick=click;
}

function settitle(title) {
	document.title = title;
}

// Pop up a window with the flash window
function getflash(FLASH) {
  if (window.screen) {

	  var w = 600;
	  var h = 400;

	  popupFlash = window.open('','popupFlash','width=' + w + ',height=' + h + ',left=' + 0 + ',top=' + 0 + ', scrollbars=yes');
  }

  popupFlash.location.href = FLASH;
}
