/*------------------------------------------------------------------
	Web Gallery Wizard 
	
	Copywright KOMOTION, Inc. 2003,2004
	
------------------------------------------------------------------*/

function applyLightFilter()
{
	if (g_fApplyFilterToImage)
	{
		var oElement = event.srcElement;
		if(!(document.activeElement.sourceIndex == (oElement.sourceIndex -1)))
		{
			oElement.style.filter="progid:DXImageTransform.Microsoft.Light()";
			oElement.filters.item("DXImageTransform.Microsoft.Light").addAmbient(255,255,255,100);
			oElement.filters.item("DXImageTransform.Microsoft.Light").addAmbient(255,255,255,25); 
		}
	}
}

function removeLightFilter()
{
	if (g_fApplyFilterToImage)
	{
		var oElement = event.srcElement;
		if(!(document.activeElement.sourceIndex == (oElement.sourceIndex -1)))
		{
			oElement.style.filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=100, FinishOpacity=20, Style=1, StartX=0, StartY=0, FinishX=0, FinishY=100)";
		}
	}
}

function resetImage()
{
	if (g_fApplyFilterToImage)
	{
		//event.srcElement.firstChild.style.filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=100, FinishOpacity=20, Style=1, StartX=0, StartY=0, FinishX=0, FinishY=100)";
		resetImageOnObject(event.srcElement.firstChild);
	}
}

function resetImageOnObject(obj)
{
	obj.style.filter = "progid:DXImageTransform.Microsoft.Alpha(Opacity=100, FinishOpacity=20, Style=1, StartX=0, StartY=0, FinishX=0, FinishY=200)";
}

function SetNormal()
{
	if (g_fApplyFilterToImage)
	{
		removeLightFilter();
		event.srcElement.style.filter =''
	}
}
{

// change the text below
// the \n means <br> or enter in in javascript for an alert
// do not forget the +
// change mailto:sales@foreveressencephotography.comt?subject=about your nrc
// into
// mailto:sales@foreveressencephotography.com?subject=your subject
function right(e) {
if(navigator.appName=='Netscape'&&(e.which==3||e.which==2))
return false;
else if(navigator.appName=='Microsoft Internet Explorer'&&(event.button==2||event.button==3)) {
warning =
" ! ! ! Warning ! ! !\n" +
"______________________________________________________\n" +
"\n" +
"Dear Viewer,\n" +
"\n" +
"I'm sorry but that function is STRICTLY disabled.\n" +
"All Contents & Graphics Copyright ©2000-2007 ~ ForeverEssencePhotography ~\n" +
"\n" +
"My work is not Public Domain.\n" +
"Therefore, it should NOT be taken from here at any cost.\n" +
"\n" +
"Click the OK button to send an e-mail. Not all Gallery Images are for sale.\n" +
"\n"+
"Your email will be answered \n" +
"\n"+
"as soon as possible.\n" +
"\n" +
" Thank you.\n" +
"~ForeverEssencePhotography~\n" +
"______________________________________________________\n"

var agree = confirm(warning);
if (agree !="0") {
top.location="mailto:sales@foreveressencephotography.com?subject=About Your 'No Right Click'"; }
return false; }
return true;}

function keypressed() {
alert("You have been told that this function is disabled.");
}
document.onkeydown=keypressed;
document.onmousedown=right;
document.onmousemove=right;
//-->
}

