<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Settings</title>
<script src="settingsview.js" type="text/javascript"></script>
<script language="JavaScript">
</script>
</head>
<body>
<br>
<form name="blockpopup"> <b>Block Popups</b> <br>
<input type="radio" value="1" name="blockpopupbutton" />Yes
<input type="radio" value="0" name="blockpopupbutton" />No
<input type="submit" name="submitit" onclick="valbutton(blockpopup);return false;" value="Save" />
<input type="reset" name="reset" value="Clear" />
</form>
<form name="deleteform"> <b>Clear Data</b><br>
<input name="list" value="1" type="checkbox">Cache<br>
<input name="list" value="2" type="checkbox">Cookies<br>
<input name="list" value="3" type="checkbox">.dat files<br>
<input name="CheckAll" value="Check All" onclick="checkAll(document.deleteform.list)" type="button">
<input name="UnCheckAll" value="Uncheck All" onclick="uncheckAll(document.deleteform.list)" type="button">
<input name="ClearSelected" value="Clear Selected" onclick="clearSelected(document.deleteform.list)" type="button"><br>
</form>
</body>
</html>