function sleep(time){
	d = new Date();
	start = d.getTime();
	_sleep_=true;
	while(d.getTime()<(start+time)){
		d=new Date();
	}
}

function goToLocation(args){
	//document.location = args[0][0];
	document.location = args;
}
