function limitText(limitField, limitCount, limitNum) {
	if (limitField.value.length > limitNum) {
		limitField.value = limitField.value.substring(0, limitNum);
	} else {
		limitCount.value = limitNum - limitField.value.length;
	}
}

function openPic(parent,sPICURL, widt, heigh){
	newWin=window.open (sPICURL,"Picture","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=yes,width="+widt+",height="+heigh+",left=400,top=300");
	newWin.focus();
}


function openMail(parent,child){
	newWin=window.open (child,"Picture","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=300,height=300,left=250,top=450");
	newWin.focus();
}
/**
 *
 * @access public
 * @return void
 **/
function dialogWindow(mes, loc) {
	if (confirm(mes)) document.location = loc;
}

function dialogWindowForm(mes) {
	return confirm(mes);
}

function formatImprimabil(parent,child){
	newWin=window.open (child,"Picture","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=640,height=500,left=250,top=150");
	newWin.focus();
}


function modifyUser(parent,child){
	newWin=window.open (child,"Picture","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=400,height=530,left=450,top=150");
	newWin.focus();
}

function recomandWin(parent,child){
	newWin=window.open (child,"Picture","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=400,height=460,left=250,top=150");
	newWin.focus();
}


function checkUncheckAll(theElement) {
    var theForm = theElement.form, z = 0;
	for(z=0; z<theForm.length;z++){
	   if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
		   theForm[z].checked = theElement.checked;
		}
	}
}//end checkUncheckAll

function factura(parent,child){
	newWin=window.open (child,"Factura","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,width=820,height=600,left=250,top=150");
	newWin.focus();
}
