﻿// JavaScript Document
function ShowDialog(url) 
{ 
  var  iWidth=800; //模态窗口宽度
  var  iHeight=600;//模态窗口高度
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;
  window.open(url,"","Scrollbars=yes,Toolbar=no,Location=no,Direction=no,Resizeable=no,Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);
}

function ShowDialog_affiche(url) 
{ 
  var  iWidth=300; //模态窗口宽度
  var  iHeight=250;//模态窗口高度
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;
  window.open(url,"Detail","Scrollbars=auto,Toolbar=no,Location=no,Direction=no,Resizeable=no,Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);
}

function ShowDialog_quoterecord(url) 
{ 
  var  iWidth=400; //模态窗口宽度
  var  iHeight=600;//模态窗口高度
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;
  window.open(url,"Detail","Scrollbars=auto,Toolbar=no,Location=no,Direction=no,Resizeable=no,Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);
}

function ShowModalDialog(url,iWidth,iHeight) 
{
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;
  showModalDialog(url,document,"dialogWidth:"+iWidth+"px;dialogHeight:"+iHeight+"px;dialogLeft:"+iLeft+"px;dialogTop:"+iTop+"px;center:yes;help:no;resizable:no;status:no");
}

function ShowDialogEx(url,iWidth,iHeight) 
{ 
  var  iTop=(window.screen.height-iHeight)/2;
  var  iLeft=(window.screen.width-iWidth)/2;
  window.open(url,"Detail","Scrollbars=yes,Toolbar=no,Location=no,Direction=no,Resizeable=no,Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);
}
