function GeneralOpenPopup(APagina, AHeight, AWidth){
	var win = window.open(APagina, "open", "width=" + AWidth + ",height=" + AHeight + ",left=" + (screen.width - AWidth) / 2 + ",top=" + (screen.height - AHeight) / 2 + ",scrollbars=yes, status=yes");
	win.focus();
}

function GeneralOpenPopupNoBars(APagina, AHeight, AWidth){
	var win = window.open(APagina, "open", "width=" + AWidth + ",height=" + AHeight + ",left=" + (screen.width - AWidth) / 2 + ",top=" + (screen.height - AHeight) / 2 + ",scrollbars=no, status=no");
	win.focus();
}

function AutoCompHalfDate(campo) {
 var appo,s,anno,today, code;
	code = evento();
	s = campo.value;
	if (s.length == 2) {
		if (code == 8) {
			campo.value = s.substr(0,s.length-1);
		}
		else { campo.value = campo.value + '/'; }
	}
	else 
		if  (s.length == 5) {
				if (code == 8) {
					campo.value = s.substr(0,s.length-1);
				}
				else {	campo.value = campo.value + '/' ; }
		}
}
function evento(e)
{
	if (!e) var e = window.event;
	if (e.keyCode)  { code = e.keyCode;	return code;}

}
