
	// 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 == '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 == '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 == 'MYRTLEBEACH') PageURL = "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=40-D+Park+Street+Ext,+Little+River,+SC+29566&aq=&sll=33.854887,-78.65675&sspn=0.011743,0.022724&ie=UTF8&hq=&hnear=40+Park+Street+Ext,+Little+River,+South+Carolina+29566&z=16"
			else if (PageURL == 'GREENVILLE') PageURL = "http://maps.google.com/maps?q=218+grimes+drive,+simpsonville,+sc&hl=en&sll=34.794792,-82.208302&sspn=0.006295,0.006295&ie=UTF8&view=map&f=d&daddr=218+Grimes+Dr,+Simpsonville,+SC+29681&geocode=CR9sT8DGtxUcFSjtEgId0pkZ-w&z=16"
			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)
		}
	
	}
