
	// SELECT nav header
	function nav_on(navID) {
		document.getElementById("MainNav_InState").src = "images/MainNav_InState_" + navID + ".gif";
		document.getElementById("MainNav_Header").src = "images/MainNav_Header_" + navID + ".gif";
	}
	// SWAP image by reference/state
	function imgSwap(_this, _state) {
		_this.src = "images/" + _this.id + "_" + _state + ".gif";
	}
	// LOAD page
	function loadPage(PageURL) {
		window.location.href = PageURL;
	}
	// HIDE Element by ID
	function hideEle(inID) {
		document.getElementById(inID).style.visibility = "hidden";
	}
	// SHOW Element by ID
	function showEle(inID) {
		document.getElementById(inID).style.visibility = "visible";
	}
	// REMOVE Element by ID
	function removeEle(inID) {
		document.getElementById(inID).style.display = "none";
	}
	// RESTORE Element by ID
	function restoreEle(inID) {
		document.getElementById(inID).style.display = "block";
	}
	// OPEN new Window
	function openWindow(winType, PageURL) {
		if (winType == "FeatPart") {
		// Featured Partners
			var load = window.open(PageURL,'','scrollbars=auto,menubar=no,height=400,width=400,resizable=no,toolbar=no,location=no,status=no');
		} else if (winType == "MapQuest") {
		// Directions (MapQuest)
			if (PageURL == 'COLUMBIA') PageURL = "http://maps.google.com/maps?hl=en&um=1&ie=UTF-8&f=d&iwstate1=dir:to&daddr=820+Chris+Dr+West+Columbia,+SC+29169&fb=1&geocode=2730098903142563086,33.992861,-81.107210&oi=manybox&ct=17&cd=1&resnum=1"
			else if (PageURL = 'HILTONHEAD') PageURL = "http://maps.google.com/maps?hl=en&um=1&ie=UTF-8&cid=0,0,4565459584929413507&fb=1&dq=builders+wholesale+carpet+hardeeville&daddr=280+Mead+Rd,+Hardeeville,+SC+29927&geocode=6231601324822754262,32.312596,-80.966434&sa=X&oi=local_result&resnum=1&ct=directions-to"
			else if (PageURL = 'CHARLESTON') PageURL = "http://maps.google.com/maps?li=d&hl=en&f=d&iwstate1=dir:to&daddr=2136+N+Main+St,+Summerville,+SC+29483+(Builders+Wholesale+Carpet+Inc)&geocode=CWl7k8_C2pFmFds9-AEdWZk5-w&iwloc=1&dq=builders+wholesale+carpet+summerville&cid=11612782381387423354&ei=Hz4sScWQCorWNqzR2aYB"
			else if (PageURL = 'MYRTLEBEACH') PageURL = "http://www.mapquest.com/maps/map.adp?address=309%20Sandy%20Ln&city=Surfside%20Beach&state=SC&zipcode=&country=US&geodiff=1"
			else if (PageURL = 'GREENVILLE') PageURL = "http://maps.google.com/maps?hl=en&um=1&ie=UTF-8&cid=0,0,5257348466740784818&fb=1&dq=builders+wholesale+carpet+greenville&daddr=1+Sunbelt+Business+Park+Dr,+Greer,+SC+29650&geocode=3253898259216935571,34.869519,-82.248390&sa=X&oi=local_result&resnum=1&ct=directions-to"
			var load = window.open(PageURL,'','scrollbars=yes,menubar=no,height=600,width=600,resizable=no,toolbar=no,location=no,status=no');
		
		} else if (winType == "VideoPreview") {
		// Video Preview
			var load = window.open(PageURL,'','scrollbars=auto,menubar=no,height=350,width=420,resizable=no,toolbar=no,location=no,status=no');

		
		}else if (winType == "HSiPop") {
		// Video Preview
			var load = window.open(PageURL,'','scrollbars=yes,menubar=no,height=600,width=785,resizable=no,toolbar=no,location=no,status=no');
		} else {
			loadPage(PageURL)
		}
	
	}