function returnURL(id){
	return window.location.href;	
}
function updateURL(href){
	window.location.href = href;
}
function updateTitle(title){
	document.title = title;
}
function showAlert(message){
	alert(message);
}

