// JavaScript Document

function loginwin()
{ 
var loginpopup = '';
url="login.asp";
//window.open (url,  "timesheet", "scrollbars=yes, toolbar=no,location=no,directories=no,status=no,resizable=no,width=350,height=200,dependent=no,top=50,left=50,leftmargin=0,topmargin=0,marginwidth=0,marginheight=0") 

if (!loginpopup.closed && loginpopup.location)
	{
		loginpopup.location.href = url;
	}
	else
	{
		loginpopup=window.open (url,  "timesheet", "scrollbars=yes, toolbar=no,location=no,directories=no,status=no,resizable=no,width=350,height=200,dependent=no,top=50,left=50,leftmargin=0,topmargin=0,marginwidth=0,marginheight=0") 
;
		if (!loginpopup.opener) loginpopup.opener = self;
	}
	if (window.focus) {loginpopup.focus()}
	return false;
}
function diswin(){
window.open ("disclaimer.htm",'picwin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=300,dependent=no,screenX=20,screenY=20');
}

function download(count)
{ f=document.docform;
//get the first selected document
for (var i=0; i < f.elements.length; i++) {
   var element = f.elements[i];
   if (element.name=="group" + count )
   {
   //iterate through options to find selected one
    var Selected = element.selectedIndex;
    var SelectedOption = element.options[Selected].value;
	url="docs/"+SelectedOption;
	window.open(url,"","")
   }
}

}
function addToFavorites()
{
if(document.all)
window.external.AddFavorite("http://www.hfma.co.uk","Health Food Manufacturers' Association")
}
function catwin()
{
window.open ("cats.htm",  "timesheet", "scrollbars=no, toolbar=no,location=no,directories=no,status=no,resizable=no,width=400,height=400,dependent=no,top=300,left=500,leftmargin=0,topmargin=0,marginwidth=0,marginheight=0,screenX=20,screenY=20") 
}