function toggleDropDown(id, id2){
	var div=document.getElementById(id);
	var lin=document.getElementById(id2);
	if(div.className=="slide-show"){
		div.className="slide-hide";
	}else{
		div.className="slide-show";
	}
	if(lin.className=="plus"){
		lin.className="min";
	}else{
		lin.className="plus";
	}
	return (false);
}

function hide(id, id2){
	return (toggleDropDown(id, id2));
}


function makeOrder(obj) {
	var url = obj.attributes['href'].value;
	var name = obj.id;
	popupWin = window.open(url, name, "width=570,height=500");
	popupWin.focus();
	return false;
}

function getPrice(obj) {
	var url = obj.attributes['href'].value;
	var name = obj.id;
	popupWin = window.open(url, name, "width=570,height=210");
	popupWin.focus();
	return false;
}


//alert (window.location.href);
