var IE = document.all ? true : false;
if(!IE) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = getMouseXY;
var mouseX = 0;
var mouseY = 0;
function getMouseXY(e)
{
	var tempX = 0;
	var tempY = 0;
	if(IE)
	{
		tempX = event.clientX + document.body.scrollLeft;
		tempY = event.clientY + document.body.scrollTop;
	}
	else
	{
		tempX = e.pageX;
		tempY = e.pageY;
	}  
	if(tempX < 0) tempX = 0;
	if(tempY < 0) tempY = 0;  
	mouseX = tempX
	mouseY = tempY
}
window.onload = function()
{
	if(window != top)
		top.location.href = location.href;
	var as = document.getElementsByTagName("a");
	for(var i = 0; i < as.length; i++)
		if(as[i].rel == "external")
			as[i].target = "_blank";
}
function open_video(id)
{
	win = window.open("video.php?"+id, "Youtube Video", "width=480,height=385,scrollbars=no,resizable=no,status=no,location=no");
}
function youtubepopup(id)
{
	window.open("http://www.youtube.com/watch_popup?v=" + id, "Video", "menubar=no,width=480,height=385,toolbar=no,location=no,status=no,resizable=no");
}
