/*function subNavShow(subInstance) {
	if (document.getElementById(subInstance).className != 'subnav_hide') {
		document.getElementById(subInstance).className = 'subnav_hide';
	} else {
		document.getElementById(subInstance).className = 'subnav_show';
	}
}*/

//blur all+++++

	function blurAnchors(){
	  if(document.getElementsByTagName){
		var a = document.getElementsByTagName("a");
		for(var i = 0; i < a.length; i++){
		  a[i].onfocus = function(){this.blur()};
		}
	  }
	}
	window.onload = blurAnchors;

	function textilePreview(elem) {
		url = "textile_preview.php?text=" + escape(elem.value);
		window.open(url,'textilePreviewPane','width=500,height=500,resizable=yes,scrollbars=yes,toolbar=yes');
	}
	
	function showTextileGuide() {
		url = "textile_guide.php";
		window.open(url,'textileGuidePane','width=500,height=500,resizable=yes,scrollbars=yes,toolbar=yes');
	}