function executeContent(document, form, close){
	var url = document.getElementById("contentUrl").value;
	window.location.href = url;
	if (close!=null && close){
		window.close();
	}
}

function createContentDialog(url,pWidth,pHeight){
	var popup = new PopupWindow();
	var options ="toolbar=no,location=no,menubar=no,titlebar=no,status,scrollbars,resizable,alwaysRaised,dependent";
	popup.setWindowProperties(options);
	popup.setSize(pWidth, pHeight);
	popup.autoHide();
	popup.setUrl(url);
	return popup;
}

function showContentDialog(popup, anchor, url){
	if (popup==null){
		var msg = "Operazione su documenti non eseguibile. Il popup di gestione documenti non e' definito!";
		alert(msg);
		return;
	}
	if (url){
		popup.setUrl(url);
	}
	popup.showPopup();
}

