Easiest way is to set up separate style sheets and then do something like:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function cssChng(val) {
alert(val);
document.getElementById("cssTag").href=val;
}
</script>
<link href="default.css" type="text/css" rel="stylesheet" id="cssTag" />
</head>
<body>
<select onchange="cssChng(this[this.selectedIndex].value)">
<option value="default.css">Default</option>
<option value="css1.css">First</option>
<option value="css2.css">Second</option>
</select>
</body>
</html>
54 68 65 42 65 61 72 4D 61 79
Bookmarks