function decision(message, url){
if(confirm(message)) location.href = url;
}

function openWindow(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=600,height=750,screenX=100,left=100,screenY=0,top=0')
popupWin.focus();
 msgWindow.opener = self;
  }

function openCMS(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=400,height=350,screenX=100,left=100,screenY=0,top=0')
popupWin.focus();
 msgWindow.opener = self;
  }

function openImg(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=650,height=650,screenX=100,left=100,screenY=0,top=0')
popupWin.focus();
 msgWindow.opener = self;
  }

function openPreview(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=568,height=300,screenX=100,left=100,screenY=0,top=0')
popupWin.focus()
}

function openApprove(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=568,height=400,screenX=100,left=100,screenY=0,top=0')
popupWin.focus()
}

function openPrompt(url, name) {
  popupWin = window.open(url, name, 'menubar=no,status=no,toolbars=no,resizable=no,scrollbars=yes,width=250,height=150,screenX=500,left=400,screenY=500,top=400')
popupWin.focus();
 msgWindow.opener = self;
  }
