<!--if(!Array.indexOf){	Array.prototype.indexOf = function(obj){		for(var i=0; i<this.length; i++){			if(this[i]==obj){				return i;			}		}		return -1;	}}function openwindow(pURL,pName,pFeatures){	window.open(pURL,pName,pFeatures);}function infowindow(pURL){	window.open(pURL,'jammininfo','width=750,height=750,scrollbars=1,resizable=1');}function closewindow(){	window.close();}function printpage(){	window.print();  }function selectsubmit(pForm){	pForm.submit();}function selectpost(pForm,pID){	pForm.action = pForm.action + pID;	pForm.submit();}function jdvselect(pID, pURL, pName, pValue){	if (pValue != vJDV){		vJDV = pValue;		ajaxselect(pID, pURL, pName, pValue);	}}function pageselect(pID, pURL, pName, pPage){	if (pPage != vPage){		vObj = document.getElementById("link" + vPage);		vObj.className = vLinkActive;				vPage = pPage;				vObj = document.getElementById("link" + vPage);		vObj.className = vLinkSelect;				ajaxselect(pID, pURL, pName, pPage);	}}function ajaxselect(pID, pURL, pName, pValue){	var vURL = pURL + "&" + pName + "=" + pValue;		var vRequest;	vObj = document.getElementById(pID);		// Safari, Firefox, etc	try{		vRequest = new XMLHttpRequest();	} catch (e){		// Internet Explorer		try{			vRequest = new ActiveXObject("Msxml2.XMLHTTP");		} catch (e) {			try{				vRequest = new ActiveXObject("Microsoft.XMLHTTP");			} catch (e){				// Unsupported Browser				return false;			}		}	}		// Called when response received from server	vRequest.onreadystatechange = function(){		if(vRequest.readyState == 4){ // response complete			if (vRequest.status == 200){ // OK response from server-- 404 would indicate page not found				var vReturn = vRequest.responseText;				if (vReturn.indexOf("|JS|") > 0){					var vSplit = vReturn.split("|JS|");					eval(vSplit[0]);					vObj.innerHTML = vSplit[1];				}else{					vObj.innerHTML = vReturn;				}			}		}	}		vRequest.open("GET", vURL, true);	vRequest.send(null); //would be used to send parameters with "POST" on vRequest.open()}function asshown() {	for (i=0; i<vOptions.length; i++) {		document.getElementById(vOptions[i][0]).selectedIndex = vOptions[i][1];	}}function imagestring(pImage,pParts){	if(pImage == ""){		return false;	}		var vArray = new Array();	var vIndexString = "";	var vHexString = "";	var vHex = "";		for (i=0; i<pParts.length; i++){		if (pParts[i][0] == ""){			vHex = pParts[i][1];		}		else{			var vColor = pParts[i][0];			var vElement = document.getElementById(vColor);						vHex = (vElement.options[vElement.selectedIndex].value);		}				vIndex = vArray.indexOf(vHex);		if (vIndex < 0){			vIndex = vArray.length;			vArray[vIndex] = vHex;		}				vIndexString = vIndexString + vIndex;	}		for (i=0; i<vArray.length; i++){		vHexString = vHexString + vArray[i];	}	var vString = "http://jd1.jammin.com:8080/Img/" + vHexString + "/" + vIndexString + "/" + pImage;	document.getElementById("JDImage").src = vString;}//-->