
function Win(mypage){
window.open(mypage,'','width=500,height=280,top=10,left=10,scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no');
}
function textCounter(field, countfield, maxlimit){
if(field.value.length > maxlimit) { field.value = field.value.substring(0, maxlimit); }
else { countfield.value = field.value.length + '/' + maxlimit; }
}
function hora(){
var fecha = new Date();
var hora = fecha.getHours();
var minuto = fecha.getMinutes();
var segundo = fecha.getSeconds();
if (hora < 10) {hora = "0" + hora;}
if (minuto < 10) {minuto = "0" + minuto;}
if (segundo < 10) {segundo = "0" + segundo;}
var horaactual = hora + ":" + minuto + ":" + segundo;
document.getElementById('hora').firstChild.nodeValue = horaactual;
tiempo = setTimeout('hora()',1000);
}
 
 
 
//-----------------------------------------------------------------------------
function submit_forms(){
var url = $('#LAPLATALINKform').attr('action');  
var str = $('#LAPLATALINKform').serialize();
var request = $.ajax({
	type: "POST",
	url: url,
	dataType: "html",
	data: str,
	timeout: 30000,
	beforeSend : function(){ $("#loading").fadeIn("fast"); }
	});
request.done(function(msg) { $("#loading").fadeOut("fast", function(){ $("#LAPLATALINKxhr").html(msg); }); });
request.fail(function(jqXHR, textStatus) { $("#loading").fadeOut("fast", function(){ alert( "Request failed: " + textStatus ); }); });	
};
