// popup windows
function PopUp(url, wide, tall) {
   window.name = "Preview";  //
   var windowconfig="status=0,scrollbars=1,resizable=1,width=" + wide + ",height=" + tall + " ";
      window.open( url, 'Title', windowconfig);
}
// end fuction 