// JavaScript Document
var str='';
	str+='<p>The style switcher will alter the appearance of our website.<\/p>';
	str+='<form name="stylepicker">';
	str+='  	<label for="style">';
	str+='	<p>Select a style to suit your preferences.<\/p>';
	str+='	<\/label>';
	str+='    <select name="style" id="style">';
	str+='      <option>-- Choose a style --<\/option>';
	str+='      <option value="default">Default<\/option>';
	str+='      <option value="yellow">Contrast<\/option>';
	str+='      <option value="hiviz">Hi Contrast<\/option>';
	str+='      <option value="null">No Style<\/option>';
	str+='    <\/select>';
	str+='    <input type="button" onclick="getStyle()" value="Select Style">';
	str+='  <\/form>';
	document.write(str);