function mousefollower(e){
	x = (!document.all)? e.pageX : event.clientX+document.documentElement.scrollLeft;
	y = (!document.all)? e.pageY : event.clientY+document.documentElement.scrollTop;
	document.getElementById('cursor').style.left = x - 50 + 'px';
	document.getElementById('cursor').style.top = y + 23 + 'px';
}	
	
if( document.attachEvent ) {		
   	document.onmousemove=mousefollower;
}
	
if( document.addEventListener )	{
	document.addEventListener("mousemove", mousefollower, false);
}

function check() {
document.getElementById('mail').value='cannot pass';
if ((document.getElementById('nickname').value.length < 3) || (document.getElementById('message').value.length < 5)) {
 window.alert("There is nothing to post. Fill in your nickname and comment.");
 return false; }}
 
function newWin(src,winName,w,h,prop,lp,tp) {
	winLeft = (!lp)? (screen.width - w) / 2 : lp;
	winTop = (!tp)? ((screen.height - h) / 2) - 28 : tp;
	winProp = (!prop)? 'menubar=no,resizable=no,scrollbars=0,status=no,toolbar=no,locationbar=no,directories=no' : prop;
	winProp += ',width='+w+',height='+h+',left='+winLeft+',top='+winTop;
	Win = window.open(src,"_blank",winProp);
	Win.focus();
} 
 
image1 = new Image();
image1.src = "img/click.gif";


function cshow() {document.getElementById('cursor').style.display = 'inline';}
function chide() {document.getElementById('cursor').style.display = 'none';}


var mapy = document.getElementsByTagName('area');
for (var i = 0; i < mapy.length; i++) {
	mapy[i].onmouseover = cshow;
	mapy[i].onmouseout = chide;
}