function GetXmlHttpObject() {
	
	var xmlHttp=null;
	
	try {
		
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
		
	}
	
	catch (e) {
	//Internet Explorer
	
		try {
	
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		
		catch (e) {
			
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	
	return xmlHttp;

}

function loadBrandSite(a) {

	xmlHttp=GetXmlHttpObject()
	
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request")
		return
	}
	
	var url="www.google.com"
	
	xmlHttp.onreadystatechange=function() {

		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { 
	
			document.getElementById("brand_website").innerHTML=xmlHttp.responseText 
		
		}
	
	}
		
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
	
}
function switchImage(a,b,c,d) {

	//alert("images/brands/images/"+b+"/"+a)
	document.getElementById('brand-bkrd-pic').style.background = "url(images/brands/images/"+b+"/"+a+")"
	
	for (var i=1; i<=d; i++) {
		
		document.getElementById("brand_pics_"+i).style.border = "1px solid #CCC"
	
	}
	
	
	document.getElementById("brand_pics_"+c).style.border = "1px solid #CC6633"
	

}

function openLZBDesign() {
	window.open('http://www.la-z-boy.com/roomplanner/resources/fs.aspx?loc=','mywin', 'width=800,height=650,scrollbars=yes');
}

function openPriceQuote() {
	window.open('Price_Quote.php','mywin', 'width=650,height=740,scrollbars=yes');

}

function openFlooringEstimate() {
	window.open('Floor_Estimate_Form.php','mywin', 'width=650,height=740,scrollbars=yes');

}

function openCustService() {
	window.open('Cust_Service_Form.php','mywin', 'width=650,height=740,scrollbars=yes');

}
function clearEmailBox() {
	document.getElementById("email_address").value = "";
	document.getElementById("email_address").style.color = "#333"
		
}

function drivingDirections(store,from) {
	window.open("Driving_Directions.php?store="+store+"&from="+from,'mywin', 'width=500,height=400,scrollbars=yes');

}
function bfMap() {
	window.open("Baumgartners_Map.php",'mywin', 'width=420,height=420,scrollbars=yes');

}
function mwMap() {
	window.open("MW_Map.php",'mywin', 'width=420,height=420,scrollbars=yes');

}
function bocMap() {
	window.open("Boc_Map.php",'mywin', 'width=420,height=420,scrollbars=yes');

}


