///////////////////////////////////////////////////////////
// DrStore SMGR v1.0
// 2004 copyright Xelius 
///////////////////////////////////////////////////////////
var dialogWin;
var sendWin;
var isIE;
isIE = (document.all) ? true : false;

function popWin(url) {
		dialogWin = window.open(url, 'popup', 'HEIGHT=500,WIDTH=500,location=no,menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no,titlebar');
        dialogWin.focus();
}

function sendMsg(url) {
		sendWin = window.open(url, 'sendpopup', 'HEIGHT=490,WIDTH=570,location=no,menubar=no,toolbar=no,status=no,resizable,scrollbars=no,titlebar');
        sendWin.focus();
}

function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	//this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	//this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	//this.style = document.layers[name];
  }
}