//function GotoClientsPage()
//function OpenWindow(url, width, height)
//function OpenPictureWindow(title, src, width, height)
//function Eml(user)
//function EmlDom(user, domain)

function EmlDom(user, domain)
{
  var em = "mail" + "to:" + user + "@" + domain;
  window.location = em;
}
function Eml(user)
{
  var em = "mail" + "to:" + user + "@" + "storm.co.za";
  window.location = em;
}

function GotoClientsPage()
{
	window.location = "/clients.q"
}

function OpenPictureWindow(title, src, width, height)
{
  var wlocation = "/picture.asp?e=1" +
	"&title=" + title +
	"&src=" + src +
	"&width=" + width +
	"&height=" + height;

  var PADDING = 20;
  var HEADING_SPACE = 50;
  width += PADDING;
  height += PADDING + HEADING_SPACE;

  var newWindow = window.open("","","scrollbars=0 resizable=0 width=" + width + " height=" + height);
  newWindow.location = wlocation;
  newWindow.document.title = title;
}

function OpenWindow(url, width, height)
{
  var newWindow = window.open("","","scrollbars=0 resizable=0 width=" + width + " height=" + height);
  newWindow.location = url;
}