function urlopen(url) {
  window.open(url , "_self" , "location=yes,menubar=yes,toolbar=yes,resizable=yes,width=400,height=500");
}

function urlopennew(url) {
  window.open(url , "_blank");
}
