// JavaScript Document

function getURL(param){
	
	var q = document.location.hash; if(q){
		return q.replace(/%20/g, ' ');
	}else{
		return "";	
	}
}

function updateURL(value){
	//alert("here");
//var num = Math.floor(Math.random()*11);
//document.location.href = "/index_prog.php?" + value + "";
parent.location.hash = ""+value+"";
//location.pathname = "/index_prog.php?" + value + "";
}
