

/* SOURCE FILE: AnchorPosition.js */
function getAnchorPosition(anchorname)
{
	var useWindow=false;
	var coordinates=new Object();
	var x=0,y=0;
	var use_gebi=false, use_css=false, use_layers=false;
	if(document.getElementById)
	{
		use_gebi=true;
	}
	else if(document.all)
	{
		use_css=true;
	}
	else if(document.layers)
	{
		use_layers=true;
	}
	
	if(use_gebi && document.all)
	{
		x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);
		y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);
	}
	else if(use_gebi)
	{
		var o=document.getElementById(anchorname);
		x=AnchorPosition_getPageOffsetLeft(o);
		y=AnchorPosition_getPageOffsetTop(o);
	}
	else if(use_css)
	{
		x=AnchorPosition_getPageOffsetLeft(document.all[anchorname]);
		y=AnchorPosition_getPageOffsetTop(document.all[anchorname]);
	}
	else if(use_layers)
	{
		var found=0;
		for(var i=0;i<document.anchors.length;i++)
		{
			if(document.anchors[i].name==anchorname)
			{
				found=1;
				break;
			}
		}
		
		if(found==0)
		{
			coordinates.x=0;
			coordinates.y=0;
			return coordinates;
		}
		x=document.anchors[i].x;
		y=document.anchors[i].y;
	}
	else
	{
		coordinates.x=0;
		coordinates.y=0;
		return coordinates;
	}
	
	coordinates.x=x;
	coordinates.y=y;
	return coordinates;
}


function getAnchorWindowPosition(anchorname)
{
	var coordinates=getAnchorPosition(anchorname);
	var x=0;
	var y=0;
	if(document.getElementById)
	{
		if(isNaN(window.screenX))
		{
			x=coordinates.x-document.body.scrollLeft+window.screenLeft;
			y=coordinates.y-document.body.scrollTop+window.screenTop;
		}
		else
		{
			x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;
			y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;}
		}
		else if(document.all)
		{
			x=coordinates.x-document.body.scrollLeft+window.screenLeft;
			y=coordinates.y-document.body.scrollTop+window.screenTop;
		}
		else if(document.layers)
		{
			x=coordinates.x+window.screenX+(window.outerWidth-window.innerWidth)-window.pageXOffset;
			y=coordinates.y+window.screenY+(window.outerHeight-24-window.innerHeight)-window.pageYOffset;
		}
		
		coordinates.x=x;
		coordinates.y=y;
		return coordinates;
}



function AnchorPosition_getPageOffsetLeft(el)
{
	var ol=el.offsetLeft;
	while((el=el.offsetParent) != null)
	{
		ol += el.offsetLeft;
	}
	return ol;
}




function AnchorPosition_getWindowOffsetLeft(el)
{
	return AnchorPosition_getPageOffsetLeft(el)-document.body.scrollLeft;
}




function AnchorPosition_getPageOffsetTop(el)
{
	var ot=el.offsetTop;
	while((el=el.offsetParent) != null)
	{
		ot += el.offsetTop;
	}
	return ot;
}




function AnchorPosition_getWindowOffsetTop(el)
{
	return AnchorPosition_getPageOffsetTop(el)-document.body.scrollTop;
}




/* SOURCE FILE: PopupWindow.js */
function PopupWindow_getXYPosition(anchorname)
{
	var coordinates;
	if(this.type == "WINDOW")
	{
		coordinates = getAnchorWindowPosition(anchorname);
	}
	else
	{
		coordinates = getAnchorPosition(anchorname);
	}
	this.x = coordinates.x;
	this.y = coordinates.y;
}





function PopupWindow_setSize(width,height)
{
	this.width = width;
	this.height = height;
}




function PopupWindow_populate(contents)
{
	this.contents = contents;
	this.populated = false;
}





function PopupWindow_refresh()
{
	if(this.divName != null)
	{
		if(this.use_gebi)
		{
			document.getElementById(this.divName).innerHTML = this.contents;
		}
		else if(this.use_css)
		{
			document.all[this.divName].innerHTML = this.contents;
		}
		else if(this.use_layers)
		{
			var d = document.layers[this.divName];
			d.document.open();
			d.document.writeln(this.contents);
			d.document.close();
		}
	}
	else
	{
		if(this.popupWindow != null && !this.popupWindow.closed)
		{
			this.popupWindow.document.open();
			this.popupWindow.document.writeln(this.contents);
			this.popupWindow.document.close();
			this.popupWindow.focus();
		}
	}
}




function PopupWindow_showPopup(anchorname)
{
	this.getXYPosition(anchorname);
	this.x += this.offsetX;
	this.y += this.offsetY;
	if(!this.populated &&(this.contents != ""))
	{
		this.populated = true;this.refresh();
	}
	
	if(this.divName != null)
	{
		if(this.use_gebi)
		{
			document.getElementById(this.divName).style.left = this.x;
			document.getElementById(this.divName).style.top = this.y;
			document.getElementById(this.divName).style.visibility = "visible";
		}
		else if(this.use_css)
		{
			document.all[this.divName].style.left = this.x;
			document.all[this.divName].style.top = this.y;
			document.all[this.divName].style.visibility = "visible";
		}
		else if(this.use_layers)
		{
			document.layers[this.divName].left = this.x;
			document.layers[this.divName].top = this.y;
			document.layers[this.divName].visibility = "visible";
		}
	}
	else
	{
		if(this.popupWindow == null || this.popupWindow.closed)
		{
			if(screen && screen.availHeight)
			{
				if((this.y + this.height) > screen.availHeight)
				{
					this.y = screen.availHeight - this.height;
				}
			}
			
			if(screen && screen.availWidth){if((this.x + this.width) > screen.availWidth)
			{
				this.x = screen.availWidth - this.width;
			}
		}
		
		this.popupWindow = window.open("about:blank","window_"+anchorname,"toolbar=0,location=0,status=0,menubar=0,scrollbars=0,alwaysRaised,dependent,titlebar=0,width="+this.width+",height="+this.height+",screenX="+this.x+",left="+((screen.width - this.width) - 50)+",screenY="+this.y+",top="+((screen.height - this.height) - 100));
	}
	this.refresh();
}
}


function PopupWindow_hidePopup()
{
	if(this.divName != null)
	{
		if(this.use_gebi)
		{
			document.getElementById(this.divName).style.visibility = "hidden";
		}
		else if(this.use_css)
		{
			document.all[this.divName].style.visibility = "hidden";
		}
		else if(this.use_layers)
		{
			document.layers[this.divName].visibility = "hidden";}
		}
		else
		{
			if(this.popupWindow && !this.popupWindow.closed)
			{
				this.popupWindow.close(); this.popupWindow = null;
			}
		}
}


function PopupWindow_isClicked(e)
{
	if(this.divName != null)
	{
		if(this.use_layers)
		{
			var clickX = e.pageX;
			var clickY = e.pageY;
			var t = document.layers[this.divName];
			if((clickX > t.left) &&(clickX < t.left+t.clip.width) &&(clickY > t.top) &&(clickY < t.top+t.clip.height))
			{
				return true;
			}
			else
			{
				return false;
			}
		}
		else if(document.all)
		{
			var t = window.event.srcElement;
			while(t.parentElement != null)
			{
				if(t.id==this.divName)
				{
					return true;
				}
				t = t.parentElement;
			}return false;
		}
		else if(this.use_gebi)
		{
			var t = e.originalTarget;
			while(t.parentNode != null)
			{
				if(t.id==this.divName)
				{
					return true;
				}
				t = t.parentNode;
			}
			return false;
		}return false;
	}
	return false;
}


function PopupWindow_hideIfNotClicked(e)
{
	if(this.autoHideEnabled && !this.isClicked(e))
	{
		this.hidePopup();
	}
}


function PopupWindow_autoHide()
{
	this.autoHideEnabled = true;
}


function PopupWindow_hidePopupWindows(e)
{
	for(var i=0;i<popupWindowObjects.length;i++)
	{
		if(popupWindowObjects[i] != null)
		{
			var p = popupWindowObjects[i];
			p.hideIfNotClicked(e);
		}
	}
}


function PopupWindow_attachListener()
{
    if(document.layers)
    {
       document.captureEvents(Event.MOUSEUP);
    }
    
    window.popupWindowOldEventListener = document.onmouseup;
    
    if(window.popupWindowOldEventListener != null)
    {
       document.onmouseup = new Function("window.popupWindowOldEventListener();PopupWindow_hidePopupWindows();");
    }
    else
    {
       document.onmouseup = PopupWindow_hidePopupWindows;
    }
}






function PopupWindow()
{
	if(!window.popupWindowIndex)
	{
		window.popupWindowIndex = 0;
	}
	
	if(!window.popupWindowObjects)
	{
		window.popupWindowObjects = new Array();
	}
	
	if(!window.listenerAttached)
	{
		window.listenerAttached = true;
		PopupWindow_attachListener();
	}
	
	this.index = popupWindowIndex++;
	popupWindowObjects[this.index] = this;
	this.divName = null;
	this.popupWindow = null;
	this.width=0;
	this.height=0;
	this.populated = false;
	this.visible = false;
	this.autoHideEnabled = false;
	this.contents = "";
	if(arguments.length>0)
	{
		this.type="DIV";
		this.divName = arguments[0];
	}
	else
	{
		this.type="WINDOW";
	}
	this.use_gebi = false;
	this.use_css = false;
	this.use_layers = false;
	if(document.getElementById)
	{
		this.use_gebi = true;
	}
	else if(document.all)
	{
		this.use_css = true;
	}
	else if(document.layers)
	{
		this.use_layers = true;
	}
	else
	{
		this.type = "WINDOW";
	}
	
	this.offsetX = 0;
	this.offsetY = 0;
	this.getXYPosition = PopupWindow_getXYPosition;
	this.populate = PopupWindow_populate;
	this.refresh = PopupWindow_refresh;
	this.showPopup = PopupWindow_showPopup;
	this.hidePopup = PopupWindow_hidePopup;
	this.setSize = PopupWindow_setSize;
	this.isClicked = PopupWindow_isClicked;
	this.autoHide = PopupWindow_autoHide;
	this.hideIfNotClicked = PopupWindow_hideIfNotClicked;
}



/* 
 *
 *
 * >------------- SOURCE FILE: CalendarPopup.js ---------------<
 *
 *
 *
 */

function FormPopup(file_upload_destinazione)
{
	var c;
	
	c = new PopupWindow();
   c.setSize(800,175);
	
	c.offsetX 		                  = -2500;
	c.offsetY                        = 50;
	c.autoHide();

	c.returnFunction 		            = "Form_tmpReturnFunction";  

	c.showForm                       = Form_showForm;
	c.hideForm                       = Form_hideForm;
	c.refreshForm                    = Form_refreshForm;
	c.getForm                        = Form_getForm;  
	c.select                         = Form_select;

	return c;
}


function Form_showForm(anchorname, file_upload_destinazione)
{
	this.populate(this.getForm(file_upload_destinazione));
	this.showPopup(anchorname);
}


function Form_hideForm()
{
   
   window.popupWindowObjects[arguments[0]].hidePopup();
}


function Form_refreshForm(index)
{
	var calObject = window.popupWindowObjects[index];
   calObject.populate(calObject.getForm());	
	calObject.refresh();
}


function Form_getForm(file_upload_destinazione)
{
	var result = "";

   result += "\n<HTML>";
   result += "\n<HEAD>";
   result += "\n     <TITLE>Upload di un file</TITLE>";
   
   
   result += "\n                        <style type='text/css'>";


//.-----------------------------.
//|          Scheletro          |
//'-----------------------------' 
  
   result += "\n                            td.row-9              { color           : #000000;";
   result += "\n                                                    background-color: #F7F7F7; }";


//.-----------------------------.
//|         Paginatore          |
//'-----------------------------'                    
   result += "\n                            .linkpaginatore         { ";
   result += "\n                                                      font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                      font-weight     : none;";
   result += "\n                                                      font-size       : 11;";
   result += "\n                                                      color           : #000000; }";
 
   result += "\n                           a.linkpaginatore:link    { text-decoration : none;";
   result += "\n                                                      color           : #000000; }";

   result += "\n                           a.linkpaginatore:visited { text-decoration : none;";
   result += "\n                                                      color           : #000000; }";

   result += "\n                           a.linkpaginatore:hover   { font-weight     : bold;";
   result += "\n                                                      text-decoration : underline;";
   result += "\n                                                      color           : #000000; }";

//.-----------------------------.
//|       Menu a tendina        |
//'-----------------------------'
   result += "\n                            .linkmenu            { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-weight     : none;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000; }";

   result += "\n                           a.linkmenu:link       { text-decoration : none;";
   result += "\n                                                   color           : #000000; }";

   result += "\n                           a.linkmenu:visited    { text-decoration : none;";
   result += "\n                                                   color           : #000000; }";
 
   result += "\n                           a.linkmenu:hover      { font-weight     : bold;";
   result += "\n                                                   text-decoration : underline;";
   result += "\n                                                   color           : #000000; }";

   result += "\n                           td.linkmenu_capitolo  { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   font-weight     : bold;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #C0C0C0; }";

   result += "\n                           td.linkmenu_paragrafo { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #DEE3E7; }";

   result += "\n                           td.linkmenu_parag_sel { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   font-weight     : bold;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #ffcf00; }";


//.-----------------------------.
//|       Menu a cartella       |
//'-----------------------------'
   result += "\n                            .linkmenu_cartella            { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                            font-weight     : none;";
   result += "\n                                                            font-size       : 11;";
   result += "\n                                                            color           : #000000; }";

   result += "\n                           a.linkmenu_cartella:link       { text-decoration : none;";
   result += "\n                                                            color           : #000000; }";

   result += "\n                           a.linkmenu_cartella:visited    { text-decoration : none;";
   result += "\n                                                            color           : #000000; }";

   result += "\n                           a.linkmenu_cartella:hover      { font-weight     : bold;";
   result += "\n                                                            text-decoration : underline;";
   result += "\n                                                            color           : #000000; }";

   result += "\n                           td.linkmenu_cartella           { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                            font-size       : 14;";
   result += "\n                                                            color           : #000000;";
   result += "\n                                                            background-color: #CCCCCC; }";

   result += "\n                           td.linkmenu_carte_sel          { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                            font-size       : 14;";
   result += "\n                                                            font-weight     : bold;";
   result += "\n                                                            color           : #000000;";
   result += "\n                                                            background-color: #ffcf00; }";


//.-----------------------------.
//|           Tabella           |
//'-----------------------------'
   result += "\n                           .linkBottone          { color           : #000000;";
   result += "\n                                                   font            : normal 11px Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   border-color    : #000000; }";


   result += "\n                           a.linkBottone:link    { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   text-decoration : none;";
   result += "\n                                                   color           : #FFCC00; }";
 
   result += "\n                           a.linkBottone:visited { text-decoration : none;";
   result += "\n                                                   color           : #FFCC00; }";
 
   result += "\n                           a.linkBottone:hover   { font-weight     : bold;";
   result += "\n                                                   text-decoration :";
   result += "\n                                                   color           : #FFCC00; }";


   result += "\n                           td.row1               { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #EFEFEF; }";

   result += "\n                           td.row-simple-0       { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #ffffff; }";
 
   result += "\n                           td.row-simple-1       { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #d3d5e4; }";

   result += "\n                           td.row-simple-2       { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #bec1de; }";


   result += "\n                           td.row-intestazione   { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 13;";
   result += "\n                                                   font-weight     : bold;";
   result += "\n                                                   color           : #ffffff;";
   result += "\n                                                   background-color: #000070;";
   result += "\n                                                   text-align      : center; }";

   result += "\n                           td.row-head-1, ";
   result += "\n                           tr.row-head-1         { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   font-weight     : bold;";
   result += "\n                                                   color           : #FFCC00;";
   result += "\n                                                   background-color: #000070; }";

   result += "\n                           td.row-head-2         { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   font-weight     : bold;";
   result += "\n                                                   color           : #FFCC00;";
   result += "\n                                                   background-color: #05216B; }";


   result += "\n                           td.row-drop-1         { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #FFEAEA; }";

   result += "\n                           td.row-drop-2         { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #FFFFFF; }";


   result += "\n                           td.row-menu-simple    { font-family     : Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                                                   font-size       : 11;";
   result += "\n                                                   color           : #000000;";
   result += "\n                                                   background-color: #DEE3E7; }";

   result += "\n                           input,textarea        { color           : #000000;";
   result += "\n     	                                           font            : normal 11px Verdana, Arial, Helvetica, sans-serif;";
   result += "\n                     	                            border-color    : #000000; }";

/* Form elements */
   result += "\n                           input,select {";
   result += "\n      	                   color : #000000;";
   result += "\n     	                   font: normal 11px Verdana, Arial, Helvetica, sans-serif;";
   result += "\n     	                   border-color : #000000;";
   result += "\n                           }";

   result += "</style>";
   
   
                
   result += "</HEAD>";

   result += "\n<form method=POST action='upload.php' id='upload' name='upload' enctype='multipart/form-data'>";
   result += "\n<BODY MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 RIGHTMARGIN=0 LEFTMARGIN=0 style='background-color: #bec1de; color: rgb(0, 0, 0);'>\n";

   result += "\n";
   result += "\n";
   result += "\n<script language='javascript'>";
   result += "\n";
   result += "\n      function FileUpLoad_checkform()";
   result += "\n      {";
   result += "\n            if (document.upload.file_upload.value == '')";
   result += "\n            {";
   result += "\n                alert('Nessun file da acquisire');";
   result += "\n            }";
   result += "\n";
   result += "\n            if (document.upload.file_upload_destinazione.value == '')";
   result += "\n            {";
   result += "\n                alert('Non è specificata la directory di destinazione sul server. Segnala il problema agli sviluppatori.');";
   result += "\n            }";
   result += "\n";
   result += "\n            if (document.upload.file_upload_destinazione.value != '' && document.upload.file_upload.value != '')";
   result += "\n            {";
// result += "\n                self.location = 'upload.php';";  
   result += "\n                document.upload.submit();";
   result += "\n            }";
   result += "\n";
   result += "\n      };";
   result += "\n";
   result += "\n</script>";
   result += "\n";
   result += "\n";
	
   result += "\n<br><br>" ; 
   result += "\n<div align  ='center'>" ;
   result += "\n" ;
   result += "\nFile <input type='file' " ;
   result += "\n            size='50' " ;
   result += "\n            name='file_upload'>" ;
   result += "\n" ;
   result += "\n     <input type='hidden' " ;
   result += "\n            size='50' " ; 
   result += "\n            name='file_upload_destinazione' " ;
   result += "\n            value='" + file_upload_destinazione + "'>" ;
   result += "\n" ;
   result += "\n</div>"; 


   result += "\n<br><br>" ;
   result += "\n<div align  ='center'>" ;

   result += "\n<center>";
   result += "\n<table width='112' border=0 cellpadding=0 cellspacing=0>";
   result += "\n<tr>";

// Bottone CONFERMA
   result += "\n     <TD><IMG SRC='skin/blue/bottone_sx.gif' WIDTH = 6 HEIGHT = 27></TD>";
   result += "\n     <TD background='skin/blue/bottone_cx.gif' ";
   result += "\n         width='100' nowrap>";
   result += "\n         <div align='center'>";
   result += "\n";
   result += "\n              <a href ='JavaScript:FileUpLoad_checkform();'";
   result += "\n                 class='linkBottone'>Conferma</a>";
   result += "\n         </div>";
   result += "\n     </TD>";
   result += "\n     <TD><IMG SRC='skin/blue/bottone_dx.gif' WIDTH=6 HEIGHT=27></TD>";
   result += "\n     <TD width=2>&nbsp;</TD>";

// Bottone ANNULLA VALORE 
   result += "\n     <TD><IMG SRC='skin/blue/bottone_sx.gif' WIDTH = 6 HEIGHT = 27></TD>";
   result += "\n     <TD background='skin/blue/bottone_cx.gif' ";
   result += "\n         width='100' nowrap>";
   result += "\n         <div align='center'>";
   result += "\n";
   result += "\n              <a href ='Javascript:window.opener.Form_tmpReturnFunction(" + '""' + ");window.close();'";
   result += "\n                 class='linkBottone'>Annulla valore</a>";
   result += "\n         </div>";
   result += "\n     </TD>";
   result += "\n     <TD><IMG SRC='skin/blue/bottone_dx.gif' WIDTH=6 HEIGHT=27></TD>";
   result += "\n     <TD width=2>&nbsp;</TD>";

// Bottone CHIUDI 
   result += "\n     <TD><IMG SRC='skin/blue/bottone_sx.gif' WIDTH = 6 HEIGHT = 27></TD>";
   result += "\n     <TD background='skin/blue/bottone_cx.gif' ";
   result += "\n         width='100' nowrap>";
   result += "\n         <div align='center'>";
   result += "\n";
   result += "\n              <a href ='JavaScript:window.close();'";
   result += "\n                 class='linkBottone'>Chiudi</a>";
   result += "\n         </div>";
   result += "\n     </TD>";
   result += "\n     <TD><IMG SRC='skin/blue/bottone_dx.gif' WIDTH=6 HEIGHT=27></TD>";
   result += "\n     <TD width=2>&nbsp;</TD>";

   result += "\n</tr>";
   result += "\n</table>";
   result += "\n</center>";



   result += "</div>";
   result += "\n<br>";

   result += "\n</BODY>";
   result += "\n</form>";
   result += "\n</HTML>";

	return result;
}




function Form_select(inputobj, linkname, file_upload_destinazione)
{
   window.Form_targetInput = inputobj; 
   this.showForm(linkname, file_upload_destinazione);

}


function Form_tmpReturnFunction(valore)
{
 	window.Form_targetInput.value = valore; 
}
