var apri;

function load(phpFile,livello)
					{
			
					var mtRequest	= new Ajax.Updater(livello,phpFile,{method:'get',evalScripts: true,encoding:'UTF-8' });
				
					}
					
function sendForm(phpFile,livello,form)
   			{
			var param		= $(form).serialize();	

			var mtRequest		= new Ajax.Updater(livello,phpFile,{method:'post',parameters: param,evalScripts: true});
   			}
   			

function ashow(id,tipo)
		{

		
		var livello = "show"+id;
		var napp_width = 640;
		var napp_height = 480; 
		var napp_server = 'site/show/index.php?elementoID='+id+'&tipo='+tipo;
		
			
	
		load(napp_server,livello);
		

		if(apri != undefined) {
					if(open != livello)
						{
						$(apri).innerHTML = "";
						}
					
					}
		apri = livello;

		}
		
		
function PopupCenter(pageURL, title,w,h)
		{
		
	
		
		var left = (screen.width/2)-(w/2);
		var top = (screen.height/2)-(h/2);
		var targetWin = window.open(pageURL, 'new', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=auto, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
		}

function commenta(eleID,progetto,sid)
		{
		var url = "http://www.ifiproduction.com/site/annotazioni/index.php?eleID="+eleID+"&progetto="+progetto+"&sid="+sid;
		
		PopupCenter(url, 'Annotazioni',310,460);
		}	
			
			
			