function openlocation(newurl)
{
	//code to open various other windows
	if(newurl=='recovery')
	{
		window.location='data-recovery.html';
	}
	else if(newurl=='home')
	{
		window.location='.';
	}
	else if(newurl=='forums')
	{
		window.location='forums';
	}
	else if(newurl=='contact')
	{
		window.location='contact.html';
	}
	else if(newurl=='forensics')
	{
		window.location='forensics.html';
	}
	else if(newurl=='mobile forensics')
	{
		window.location='mobileforensics.html';
	}
	else if(newurl=='storage')
	{
		window.location='storage-raid.html';
	}
	else if(newurl=='others')
	{
		window.location='other-recovery.html';
	}
	else
		window.status= 'To show page ' + newurl;
}
