function funnum(e)
	{
	
		if(window.event)
		{
			if((event.keyCode>=65 && event.keyCode<=122))
			{
				event.keyCode=0;
			}
			else
			{
			}
		}
		else
		{
			if((e.which>=65 && e.which<=122))
			{
				return false;
			}
			else
			{
				
			}
		}
	}
	
function showImagePopup(id,name)
{
	    	
    var randomnumber=Math.random();
    var path='show_image.php?id=' + id + '&rnd=' + randomnumber + '&name=' + name;
    if (typeof document.body.style.maxHeight == "undefined")
        {
          jQuery("select.listmenu").hide();
        }
    //listmenu
   	jQuery.facebox({ ajax: path })   
    
}	
function popUpwindow (x,title)
{
 str='view-tiles.php?id='+x+'&title='+title;
 var newwin;
 //str='image1.asp';
 var winX = (screen.width -800) / 2 ;
 var winY = (screen.height -675) / 2;
 newwin=window.open(str,null,"left="+winX+"px,top="+winY+"px,height=675px,width=800px,status=no,toolbar=no,menubar=no,location=no,scrollbar=yes");
 newwin.focus();
}
function showTitlesPopup(id,name)
{
    var randomnumber=Math.random();
    var path='show_tiles.php?id=' + id + '&rnd=' + randomnumber + '&name=' + name;
    //window.open(path);
    if (typeof document.body.style.maxHeight == "undefined")
        {
          jQuery("select.listmenu").hide();
        }
    //listmenu
   	jQuery.facebox({ ajax: path })  
    
}	
