function returnIndex(){
	theIndex = "";
	for(z = 0; z < depts.length; z ++){
		if(depts[z].id == theId){
			//alert(theId);
			theIndex = z;
			break;
		}
	}
	if(isNaN(theIndex)){
		location = "../store/default.asp";
	}
}