/*
function QUICK_DOWNLOAD_Pop(URL, WID, HEI) {
		id = "quick_download"
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + WID + ",height=" + HEI + "');");
}
*/
var remote = null;
function QUICK_DOWNLOAD_Pop(URL,WID,HEI) {
	id = "quick_download"
  remote = eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + WID + ",height=" + HEI + "');");
  if (window.focus) {remote.focus()}
  if(remote != null) {
    if(remote.opener == null) remote.opener = self;
    window.name = 'main';
  }
}