function displayunicode(e,type,left,right){
if(type==12)
	{
		var unicode=e.keyCode? e.keyCode : e.charCode
		if(unicode==37)
		{
			location.href = "http://www.funnyscreen.net/view.php?img=" +left.toString();
		}
		else if(unicode==39)
		{
			location.href = "http://www.funnyscreen.net/view.php?img=" +right.toString();
	
		}
	}
}

