
function fixedWind(urlx,width,height)
{
	window.open(urlx,"popwin","toolbar=no,width="+width+",height="+height+",status=no,scrollbars=no,resizable=no,menubar=no,left=50,top=25");
}

function fixedWind2(urlx,width,height,scroll,menubar,resizable,x,y)
{
	var X = x + 50;
	var Y = y + 0;
	window.open(urlx,"win",'toolbar=0,location=0,directories=0,status=0,scrollbars='+ scroll + ',menubar='+ menubar + ',resizable='+ resizable + ',width=' + width + ',height=' + height + ',top=' + Y + ',left=' +X);
}

function footerWind(urlx,width,height)
{
	window.open(urlx,"printme","toolbar=no,width="+width+",height="+height+",status=no,scrollbars=yes,resizable=yes,menubar=no,left=50,top=25");
}

  function isEmailAddr(email)
  {
    var result = false
    var theStr = new String(email)
    var index = theStr.indexOf("@");
    if (index > 0)
    {
      var pindex = theStr.indexOf(".",index);
      if ((pindex > index+1) && (theStr.length > pindex+1))
  	result = true;
    }
    return result;
  }