function check(x){
  if(window.confirm('Are You Sure ?')){
    var fs=document.getElementsByTagName('form');
    for(var i=0; i<fs.length; ++i){
      var a=fs[i].getAttribute(x);
      if(a) fs[i].setAttribute('action',a);
    }
    return true;
  }
  else return false;
}


