function randomFromTo(from, to){
       return Math.floor(Math.random() * (to - from + 1) + from);
}

	//Clean up the URL's
	function stripslashes( str ) {	 
		return (str+'').replace(/\0/g, '0').replace(/\\([\\'"])/g, '$1');
	}
