
function changeLocation(target)
{
if(target.search(/^http:.+/)!=-1)
window.open(target,'_blank','');
else
document.location.href = target;
}


