 

/// THIS ALLOWS ME TO REFRESH TO THE CURRENT ANCHOR///
if(location.hash!="")             ///
 location.href=location.hash;     ///
///////////////////////////////////// 
  
function reloadAndJump(anchor)
{
 location.href=location.href.split(/\?|#/)[0] + '#' + anchor;   
 location.reload(true);
 
 return false;
}
 
 
