// JavaScript Document
function $$(objid){
	return document.getElementById(objid);
}

function select1(obj, brand){
	var objnum = obj.id.substring(1, obj.id.length);
	for(var i = 1; i <= 5; i ++){
		if(objnum == i){
			$$("s" + i).className ="ahover";
		}else{
			$$("s" + i).className ="";
		}
	}
	
	document.getElementById("cb_brand").setAttribute("value", brand);
}

function select2(obj, type){
	var objnum = obj.id.substring(2, obj.id.length);
	for(var i = 1; i <= 4; i ++){
		if(objnum == i){
			$$("ss" + i).className ="ahover";
		}else{
			$$("ss" + i).className ="";
		}
	}
	document.getElementById("cb_type").setAttribute("value", type);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
}
