// JScript source code
function showSubCategoryInfo(subCategoryId) {
    subCategoryId = String(subCategoryId);
    if (subCategoryId == ""){
        var url = location.href.split("/");
        subCategoryId = url[url.length - 2];
    }
   
	var subcategoryRollover = $("subcategoryRollover");
	var subcategoryHeaders = subcategoryRollover.getElementsByTagName("h3");
	var subcategoryDescriptions = subcategoryRollover.getElementsByTagName("p");
	for (i=0; i<subcategoryHeaders.length; i++) {
		subcategoryHeaders[i].style.display = "none";
		subcategoryDescriptions[i].style.display = "none";
	}

	var currentCategoryHeader = $("subcategoryHeader_" + subCategoryId);
	var currentCategoryDescription = $("subcategoryDescription_" + subCategoryId);
	if (currentCategoryHeader) {
		currentCategoryHeader.style.display = "block";
		currentCategoryDescription.style.display = "block";
	}
	
	var subcategoryPhoto = $("subcategoryPhoto");
	if (subCategoryId.length == 1) {
		subCategoryId = "0" + subCategoryId;
	}
	subcategoryPhoto.innerHTML = '<img src="/images/subCategoryPhotos/subCategoryPhotos_' + subCategoryId + '.jpg" width="200" height="200" border="0">';
}

function showHelpSection(sectionId) {
	var helpDeskContent = $("HelpDeskContent");
	var helpSection = document.getElementById(sectionId);
	var helpSections = document.getElementsByClassName("helpSection");
	for (i=0; i<helpSections.length; i++) {
		helpSections[i].style.display = "none";
	}
	helpSection.style.display = "block";
}

function popupWindow(popupUrl,width,height) {
    window.open (popupUrl, "popupwindow","menubar=1,resizable=1,scrollbars=1,width=" + width + ",height=" + height);
}