// JavaScript Document

function getRandomNumber( value ) {
	if( value == undefined )
		value = 10;
	return Math.floor( Math.random() * value );	
}

function getRandomValue() {
	return (String((new Date()).getTime()).replace(/\D/gi,''));	
}
