<!-- Script by hscripts.com -->
<!-- Copyright of HIOXINDIA -->
<!-- More scripts @www.hscripts.com -->
/* Created on : Dec 1,2007
Javascript for validating a rounded integer value.
This script validates the given input and returns true or false.
You have to just call the function with the input as argument.
Eg:var d = isInteger(3); returns true;
var e = isInteger(4.4); returns false;*/
<script type="text/javascript">
function isInteger(s)
{
var i;
s = s.toString();
for (i = 0; i < s.length; i )
{
var c = s.charAt(i);
if (isNaN(c))
{
alert("El valor dado no es un numero");
return false;
}
}
return true;
}
function ctck()
{
var sds = document.getElementById("dum");
if(sds == null){alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta.");}
var sdss = document.getElementById("dumdiv");
if(sdss == null){alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta.");}
}
document.onLoad="ctck()";
</script>
<!--Script by hscripts.com-->