//*******************************
//*Disable Right Click on a browser
//*Made available by  http://www.anandsoft.com
//*Written by Ravi Shankar Bhatia
//*The above information may not be removed  ..For help please email: info@anandsoft.com
//********************************/

PopUpURL    = "..:: my[2be1forever] :: Sun An & Lylyana :: United by His Love ::..";

isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;

if (isIE||isNN)
{
 document.oncontextmenu=checkV;
}
else
{
 document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);
 document.onmousedown=checkV;
} 

function checkV(e)
{
	if (isN4)
	 {
	if (e.which==2||e.which==3)
		{
		dPUW=alert(PopUpURL);
		return false;
		}
	}
	else
	{
	dPUW=alert(PopUpURL);
	return false;
	}
}


var t_id = setInterval(animate,20);
var pos=0;
var dir=2;
var len=0;
function animate()
{
	var elem = document.getElementById('progress');
	if(elem != null) {
		if (pos==0) len += dir;
		if (len>32 || pos>79) pos += dir;
		if (pos>79) len -= dir;
		if (pos>79 && len==0) pos=0;
		elem.style.left = pos;
		elem.style.width = len;
	}
}
function remove_loading() {
	this.clearInterval(t_id);
	var targelem = document.getElementById('loader_container');
	targelem.style.display='none';
	targelem.style.visibility='hidden';
}	

function ShowPopUp(thepage,thewidth,theheight)
{
	window.open(thepage, "_new","width=" + thewidth + ",height=" + theheight + ",resizable=no,scrollbars=no,toolbar=0,location=0,directories=0,status=0,menubar=0");
}