function detect()
{
	if (parent.location.href==window.location.href) {document.location.href='index.html';}
}
function nocopy()
{
	if (event.button==2) {; }
}
function clock()
{
	var H='....';
	var H=H.split('');
	var M='.....';
	var M=M.split('');
	var S='......';
	var S=S.split('');
	var Ypos=0;
	var Xpos=0;
	var Ybase=8;
	var Xbase=8;
	var dots=12;

	var time=new Date ();
	var secs=time.getSeconds();
	var sec=-1.57 + Math.PI * secs/30;
	var mins=time.getMinutes();
	var min=-1.57 + Math.PI * mins/30;
	var hr=time.getHours();
	var hrs=-1.57 + Math.PI * hr/6 + Math.PI*parseInt(time.getMinutes())/360;
	for (i=0; i < dots; ++i){
		document.getElementById("dig" + (i+1)).style.top=0-15+40*Math.sin(-0.49+dots+i/1.9).toString() + "px";
		document.getElementById("dig" + (i+1)).style.left=0-14+40*Math.cos(-0.49+dots+i/1.9).toString() + "px";
	}
	for (i=0; i < S.length; i++){
		document.getElementById("sec" + (i+1)).style.top =Ypos+i*Ybase*Math.sin(sec).toString() + "px";
		document.getElementById("sec" + (i+1)).style.left=Xpos+i*Xbase*Math.cos(sec).toString() + "px";
	}
	for (i=0; i < M.length; i++){
		document.getElementById("min" + (i+1)).style.top =Ypos+i*Ybase*Math.sin(min).toString() + "px";
		document.getElementById("min" + (i+1)).style.left=Xpos+i*Xbase*Math.cos(min).toString() + "px";
	}
	for (i=0; i < H.length; i++){
		document.getElementById("hour" + (i+1)).style.top =Ypos+i*Ybase*Math.sin(hrs).toString() + "px";
		document.getElementById("hour" + (i+1)).style.left=Xpos+i*Xbase*Math.cos(hrs).toString() + "px";
	}
	setTimeout('clock()',50);
}