function refreshScreen(){
	var refreshLink = window.top.location.href;
	var index = refreshLink.indexOf('#');
	if( index != -1){
		refreshLink = refreshLink.substring(0,index);
		window.top.location.href =refreshLink;
	}else{
		window.top.location.href=window.top.location.href;
	}
}