
function goURL(base_url) 
{ 
  document.location.href = base_url; 
} 

function goURLWithData(base_url,item,value) 
{ 
  document.location.href = base_url + '&' + item + '=' + value; 
} 


