// JavaScript Document

function preLoad() {
	if(navigator.appName.indexOf("Microsoft") != -1) {
		document.getElementById("subMenu").style.display = "none";
	} else {
		document.getElementById("subMenu").style.visibility = "collapse";
	}
}
function viewCategory(id)
{
	if(navigator.appName.indexOf("Microsoft") != -1) {
		document.getElementById("subMenu").style.display = "none";
	} else {
		document.getElementById("subMenu").style.visibility = "collapse";
	}
	with (window.document.frmListProduct) {
		if (cboCategory.selectedIndex == 0) {
			window.location.href = 'index.php';
		} else {
			window.location.href = 'index.php?top=' + cboCategory.options[cboCategory.selectedIndex].value;
		}
	}
}
