function Popup(locazione,larg,alt) {
newwindow = window.open (locazione, "NewWin", "toolbar=no, scrollbars=yes, location=no, resizable=yes, width="+larg+", height="+alt+", left=0, top=0, right=0, bottom=0");
newwindow.creator=self;
}

function popup(locazione,larg,alt,name) {
newwindow = window.open (locazione, name, "toolbar=no, scrollbars=yes, location=no, resizable=yes, width="+larg+", height="+alt+", left=0, top=0, right=0, bottom=0");
newwindow.creator=self;
}

function redirect(pagina){
	location.href=pagina;
	}

function conferma()
{
    var confirmMsg  = 'Are you sure to delete? ';
    var is_confirmed = confirm(confirmMsg + ' \n');
    return is_confirmed;
}


function trim(x) 
		{
			return x.toString().replace(/^[ \t\r\n]+/,'').replace(/[ \t\r\n]+$/,'');
		}
		
