// JavaScript Document

function createQuickLink(){
	document.write('<table class="items">');
	document.write('<tr>');
	document.write('<td align="center">');
	document.write('<form name="formQL">');
	document.write('<select style="text-align:center" name="optionQL" onchange="goto()">');
	document.write('<option selected="selected">--Quick link to selection of product type--</option>');
	document.write('<option style="text-align:left" value="fscc.html">Full Size CPU Cards</option>');
	document.write('<option style="text-align:left" value="hscc.html">Half Size CPU Cards</option>');
	document.write('<option style="text-align:left" value="etxb.html">ETX Base</option>');
	document.write('<option style="text-align:left" value="3sbc.html">3.5-inch Single Board Computer</option>');
	document.write('<option style="text-align:left" value="5sbc.html">5.25-inch Single Board Computer</option>');
	document.write('<option style="text-align:left" value="lsm.html">Longterm Supply Motherboard / Mini-iTX Motherboard</option>');
	document.write('<option style="text-align:left" value="mitxc.html">Mini-iTX Cases</option>');
	document.write('<option style="text-align:left" value="pc104.html">PC104+</option>');
	document.write('<option style="text-align:left" value="etsbc.html">Extended Temperature SBC</option>');
	document.write('</select>');
	document.write('</form>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
}

function createQuickLinkIE(){
	document.write('<table class="items">');
	document.write('<tr>');
	document.write('<td align="center">');
	document.write('<form name="formQL">');
	document.write('<select style="text-align:center" name="optionQL" onchange="goto()">');
	document.write('<option selected="selected">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--Quick link to selection of product type--</option>');
	document.write('<option style="text-align:left" value="fscc.html">Full Size CPU Cards</option>');
	document.write('<option style="text-align:left" value="hscc.html">Half Size CPU Cards</option>');
	document.write('<option style="text-align:left" value="etxb.html">ETX Base</option>');
	document.write('<option style="text-align:left" value="3sbc.html">3.5-inch Single Board Computer</option>');
	document.write('<option style="text-align:left" value="5sbc.html">5.25-inch Single Board Computer</option>');
	document.write('<option style="text-align:left" value="lsm.html">Longterm Supply Motherboard / Mini-iTX Motherboard</option>');
	document.write('<option style="text-align:left" value="mitxc.html">Mini-iTX Cases</option>');
	document.write('<option style="text-align:left" value="pc104.html">PC104+</option>');
	document.write('<option style="text-align:left" value="etsbc.html">Extended Temperature SBC</option>');
	document.write('</select>');
	document.write('</form>');
	document.write('</td>');
	document.write('</tr>');
	document.write('</table>');
}


function goto(){
	var page = document.forms['formQL'].optionQL.value;
	document.forms['formQL'].optionQL.options[0].selected = true;
	window.location = homeURL + "industrialboard/" + page;
}


