function submitSearchForm(){
     d=document.getElementById('de');
     if(!d){return false;}	
     window.location = d.value ;
}
function populate(o)
		{
			d=document.getElementById('de');
			if(!d){return false;}			
			var mitems=new Array();
			mitems['By Application']=[
['', '']


,['Forensic Workstations', 'http://www.forensics.ie/hardware/list/category/forensic-workstations/']

,['Hard Drive Duplication', 'http://www.forensics.ie/hardware/list/category/hard-drive-duplication/']

,['Mobile Phone Forensic Analysis', 'http://www.forensics.ie/hardware/list/category/mobile-phone-forensic-analysis/']

,['Safely boot subject Hard Drives', 'http://www.forensics.ie/hardware/list/category/safely-boot-subject-hard-drives/']

,['Secure Data Deletion', 'http://www.forensics.ie/hardware/list/category/secure-data-deletion/']

,['Write Blocking Devices', 'http://www.forensics.ie/hardware/list/category/write-blocking-devices/']







];

			mitems['By Vendor']=[
['', '']









,['Digital Intelligence', 'http://www.forensics.ie/hardware/list/category/digital-intelligence/']

,['Guidance Software', 'http://www.forensics.ie/hardware/list/category/guidance-software/']

,['Mediaeraser', 'http://www.forensics.ie/hardware/list/category/mediaeraser/']

,['Tableau', 'http://www.forensics.ie/hardware/list/category/tableau/']

,['Voom Technologies', 'http://www.forensics.ie/hardware/list/category/voom-technologies/']

];

d.options.length=0;
			cur=mitems[o.options[o.selectedIndex].value];
			if(!cur){return false;}
			d.options.length=cur.length-1;
			for(var i=1;i<cur.length;i++)
			{
				d.options[i-1].text=cur[i][0];
				d.options[i-1].value=cur[i][1];
			}
		}

