// JavaScript Document

function confirmMsg(url, msg){
  
  var url;
  var msg;
  
  if( confirm(msg) )
  
    location.href=url;  

}


