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

