function confirmLink(theLink,lang)
{
    	if(lang=="it"){
		var is_confirmed = confirm('Vuoi cancellare questa informazione?\n');
	}else{
		var is_confirmed = confirm('Are you sure to delete this information?\n');
	}	
    	
    if (is_confirmed) {
        theLink.href += '';
    }

    return is_confirmed;
}

function Submitedge(edge)
{
      this.document.pages.edge.value = edge;
      this.document.pages.submit();
}

