function embolden(what) {

	var leftNav = parent.document.getElementById("navTree");
	var navLinks = leftNav.getElementsByTagName("a");
	for(var i=0;i<navLinks.length;i++){
		navLinks[i].style.fontWeight = "";

		}

	var theObj = what;
		parent.document.getElementById(theObj).childNodes[0].style.fontWeight="bold";
		parent.document.getElementById(theObj).childNodes[0].blur();

	}

function expandMe(uid) {

	var choppedUID = uid.substring(3);
	//alert(choppedUID);
	var theContainer = "box" + choppedUID;
	var theExpander = "expando" + choppedUID;
	document.getElementById(theContainer).style.display = "";

	if(choppedUID!=49941592) {

		document.getElementById(theExpander).href = "javascript:collapseMe(" + choppedUID + ")";
	}

	}

function collapseMe(uid) {

	var theContainer = "box" + uid;
	var theExpander = "expando" + uid;
	document.getElementById(theContainer).style.display = "none";
	document.getElementById(theExpander).href = "javascript:expandMe(" + uid + ")";

	if(uid==927135396)
		{
				document.getElementById('box49941592').style.display = "none";

			}

	}

function toggleAction(what,theID) {

	var whatToCollapse = theID;
	document.getElementById(what).href = "javascript:collapseMe(" + whatToCollapse + ")";

	}

function loadExtras(turnOn,whatCode)
{


	var theBody = document.getElementsByTagName("body")[0];

	///first remove any leftovers from previous pages:

	if(document.getElementById("callout-a")) { var olddiva = document.getElementById("callout-a"); theBody.removeChild(olddiva); }
	if(document.getElementById("callout-b")) { var olddivb = document.getElementById("callout-b"); theBody.removeChild(olddivb); }
	if(document.getElementById("callout-c")) { var olddivc = document.getElementById("callout-c"); theBody.removeChild(olddivc); }
	if(document.getElementById("callout-d")) { var olddivd = document.getElementById("callout-d"); theBody.removeChild(olddivd); }
	if(document.getElementById("callout-e")) { var olddive = document.getElementById("callout-e"); theBody.removeChild(olddive); }
	if(document.getElementById("callout-f")) { var olddivf = document.getElementById("callout-f"); theBody.removeChild(olddivf); }



	if(turnOn==0) {
		document.getElementById("rolloverMap").innerHTML = "";
		document.getElementById("callout").style.display = "none";
	 }

	if(turnOn==1) {

		if(whatCode==239) {
			//office rollover image
			document.getElementById("rolloverMap").innerHTML = "\
			<area shape='rect' coords='161,271,189,299' onMouseOver='showCallout239(\"a\");' onmouseout='hideCallout(\"a\");'> \
			<area shape='rect' coords='237,98,257,118'  onMouseOver='showCallout239(\"b\");' onmouseout='hideCallout(\"b\");'> \
			<area shape='rect' coords='289,152,309,172' onMouseOver='showCallout239(\"c\");' onmouseout='hideCallout(\"c\");'> \
			<area shape='rect' coords='342,190,362,210' onMouseOver='showCallout239(\"d\");' onmouseout='hideCallout(\"d\");'> \
			<area shape='rect' coords='393,209,413,229' onMouseOver='showCallout239(\"e\");' onmouseout='hideCallout(\"e\");'> \
			<area shape='rect' coords='487,294,507,314' onMouseOver='showCallout239(\"f\");' onmouseout='hideCallout(\"f\");'> \
			";


			var IMGcalloutA = document.createElement("img");
			var IMGcalloutB = document.createElement("img");
			var IMGcalloutC = document.createElement("img");
			var IMGcalloutD = document.createElement("img");
			var IMGcalloutE = document.createElement("img");
			var IMGcalloutF = document.createElement("img");

			IMGcalloutA.setAttribute('id', 'callout-a');
			IMGcalloutB.setAttribute('id', 'callout-b');
			IMGcalloutC.setAttribute('id', 'callout-c');
			IMGcalloutD.setAttribute('id', 'callout-d');
			IMGcalloutE.setAttribute('id', 'callout-e');
			IMGcalloutF.setAttribute('id', 'callout-f');

			IMGcalloutA.setAttribute('src', 'images/callout-239-a.gif');
			IMGcalloutB.setAttribute('src', 'images/callout-239-b.gif');
			IMGcalloutC.setAttribute('src', 'images/callout-239-c.gif');
			IMGcalloutD.setAttribute('src', 'images/callout-239-d.gif');
			IMGcalloutE.setAttribute('src', 'images/callout-239-e.gif');
			IMGcalloutF.setAttribute('src', 'images/callout-239-f.gif');

			theBody.appendChild(IMGcalloutA);
			theBody.appendChild(IMGcalloutB);
			theBody.appendChild(IMGcalloutC);
			theBody.appendChild(IMGcalloutD);
			theBody.appendChild(IMGcalloutE);
			theBody.appendChild(IMGcalloutF);

			document.getElementById("callout-a").style.position = "absolute";
			document.getElementById("callout-b").style.position = "absolute";
			document.getElementById("callout-c").style.position = "absolute";
			document.getElementById("callout-d").style.position = "absolute";
			document.getElementById("callout-e").style.position = "absolute";
			document.getElementById("callout-f").style.position = "absolute";

			document.getElementById("callout-a").style.left = "19px";
			document.getElementById("callout-b").style.left = "0px";
			document.getElementById("callout-c").style.left = "22px";
			document.getElementById("callout-d").style.left = "360px";
			document.getElementById("callout-e").style.left = "413px";
			document.getElementById("callout-f").style.left = "134px";

			document.getElementById("callout-a").style.top = "320px";
			document.getElementById("callout-b").style.top = "92px";
			document.getElementById("callout-c").style.top = "139px";
			document.getElementById("callout-d").style.top = "183px";
			document.getElementById("callout-e").style.top = "204px";
			document.getElementById("callout-f").style.top = "338px";

			document.getElementById("callout-a").style.zIndex = "10";
			document.getElementById("callout-b").style.zIndex = "10";
			document.getElementById("callout-c").style.zIndex = "10";
			document.getElementById("callout-d").style.zIndex = "10";
			document.getElementById("callout-e").style.zIndex = "10";
			document.getElementById("callout-f").style.zIndex = "10";

			document.getElementById("callout-a").style.display = "none";
			document.getElementById("callout-b").style.display = "none";
			document.getElementById("callout-c").style.display = "none";
			document.getElementById("callout-d").style.display = "none";
			document.getElementById("callout-e").style.display = "none";
			document.getElementById("callout-f").style.display = "none";

			}


		if(whatCode==235) {
			//media rollover image
			document.getElementById("rolloverMap").innerHTML = "\
			<area shape='rect' coords='108,237,125,256' onMouseOver='showCallout235(\"a\");' onmouseout='hideCallout(\"a\");'> \
			<area shape='rect' coords='159,237,177,257' onMouseOver='showCallout235(\"b\");' onmouseout='hideCallout(\"b\");'> \
			<area shape='rect' coords='218,205,237,225' onMouseOver='showCallout235(\"c\");' onmouseout='hideCallout(\"c\");'> \
			<area shape='rect' coords='498,204,515,225' onMouseOver='showCallout235(\"e\");' onmouseout='hideCallout(\"e\");'> \
			<area shape='rect' coords='579,206,594,225' onMouseOver='showCallout235(\"f\");' onmouseout='hideCallout(\"f\");'> \
			";


			var IMGcalloutA = document.createElement("img");
			var IMGcalloutB = document.createElement("img");
			var IMGcalloutC = document.createElement("img");
			var IMGcalloutD = document.createElement("img");
			var IMGcalloutE = document.createElement("img");
			var IMGcalloutF = document.createElement("img");

			IMGcalloutA.setAttribute('id', 'callout-a');
			IMGcalloutB.setAttribute('id', 'callout-b');
			IMGcalloutC.setAttribute('id', 'callout-c');
			IMGcalloutD.setAttribute('id', 'callout-d');
			IMGcalloutE.setAttribute('id', 'callout-e');
			IMGcalloutF.setAttribute('id', 'callout-f');

			IMGcalloutA.setAttribute('src', 'images/callout-235-a-1.gif');
			IMGcalloutB.setAttribute('src', 'images/callout-235-b-1.gif');
			IMGcalloutC.setAttribute('src', 'images/callout-235-c-1.gif');
			IMGcalloutD.setAttribute('src', 'images/callout-235-d.gif');
			IMGcalloutE.setAttribute('src', 'images/callout-235-e.gif');
			IMGcalloutF.setAttribute('src', 'images/callout-235-f.gif');

			theBody.appendChild(IMGcalloutA);
			theBody.appendChild(IMGcalloutB);
			theBody.appendChild(IMGcalloutC);
			theBody.appendChild(IMGcalloutD);
			theBody.appendChild(IMGcalloutE);
			theBody.appendChild(IMGcalloutF);

			document.getElementById("callout-a").style.position = "absolute";
			document.getElementById("callout-b").style.position = "absolute";
			document.getElementById("callout-c").style.position = "absolute";
			document.getElementById("callout-d").style.position = "absolute";
			document.getElementById("callout-e").style.position = "absolute";
			document.getElementById("callout-f").style.position = "absolute";

			document.getElementById("callout-a").style.left = "15px";
			document.getElementById("callout-b").style.left = "165px";
			document.getElementById("callout-c").style.left = "36px";
			document.getElementById("callout-d").style.left = "32px";
			document.getElementById("callout-e").style.left = "244px";
			document.getElementById("callout-f").style.left = "277px";

			document.getElementById("callout-a").style.top = "283px";
			document.getElementById("callout-b").style.top = "283px";
			document.getElementById("callout-c").style.top = "252px";
			document.getElementById("callout-d").style.top = "252px";
			document.getElementById("callout-e").style.top = "252px";
			document.getElementById("callout-f").style.top = "252px";

			document.getElementById("callout-a").style.zIndex = "10";
			document.getElementById("callout-b").style.zIndex = "10";
			document.getElementById("callout-c").style.zIndex = "10";
			document.getElementById("callout-d").style.zIndex = "10";
			document.getElementById("callout-e").style.zIndex = "10";
			document.getElementById("callout-f").style.zIndex = "10";

			document.getElementById("callout-a").style.display = "none";
			document.getElementById("callout-b").style.display = "none";
			document.getElementById("callout-c").style.display = "none";
			document.getElementById("callout-d").style.display = "none";
			document.getElementById("callout-e").style.display = "none";
			document.getElementById("callout-f").style.display = "none";

			}






		if(whatCode==231) {
			//bathroom rollover image
			document.getElementById("rolloverMap").innerHTML = "\
			<area shape='rect' coords='212,140,230,159' onMouseOver='showCallout231(\"b\");' onmouseout='hideCallout(\"b\");'> \
			<area shape='rect' coords='164,241,181,259' onMouseOver='showCallout231(\"a\");' onmouseout='hideCallout(\"a\");'> \
			<area shape='rect' coords='298,244,310,257' onMouseOver='showCallout231(\"c\");' onmouseout='hideCallout(\"c\");'> \
			<area shape='rect' coords='429,176,442,188' onMouseOver='showCallout231(\"d\");' onmouseout='hideCallout(\"d\");'> \
			<area shape='rect' coords='558,176,571,190' onMouseOver='showCallout231(\"e\");' onmouseout='hideCallout(\"e\");'> \
			";

			var IMGcalloutA = document.createElement("img");
			var IMGcalloutB = document.createElement("img");
			var IMGcalloutC = document.createElement("img");
			var IMGcalloutD = document.createElement("img");
			var IMGcalloutE = document.createElement("img");

			IMGcalloutA.setAttribute('id', 'callout-a');
			IMGcalloutB.setAttribute('id', 'callout-b');
			IMGcalloutC.setAttribute('id', 'callout-c');
			IMGcalloutD.setAttribute('id', 'callout-d');
			IMGcalloutE.setAttribute('id', 'callout-e');

			IMGcalloutA.setAttribute('src', 'images/callout-231-a.gif');
			IMGcalloutB.setAttribute('src', 'images/callout-231-b.gif');
			IMGcalloutC.setAttribute('src', 'images/callout-231-c-1.gif');
			IMGcalloutD.setAttribute('src', 'images/callout-231-d-1.gif');
			IMGcalloutE.setAttribute('src', 'images/callout-231-e.gif');

			theBody.appendChild(IMGcalloutA);
			theBody.appendChild(IMGcalloutB);
			theBody.appendChild(IMGcalloutC);
			theBody.appendChild(IMGcalloutD);
			theBody.appendChild(IMGcalloutE);

			document.getElementById("callout-a").style.position = "absolute";
			document.getElementById("callout-b").style.position = "absolute";
			document.getElementById("callout-c").style.position = "absolute";
			document.getElementById("callout-d").style.position = "absolute";
			document.getElementById("callout-e").style.position = "absolute";

			document.getElementById("callout-a").style.left = "171px";
			document.getElementById("callout-b").style.left = "219px";
			document.getElementById("callout-c").style.left = "301px";
			document.getElementById("callout-d").style.left = "119px";
			document.getElementById("callout-e").style.left = "304px";

			document.getElementById("callout-a").style.top = "286px";
			document.getElementById("callout-b").style.top = "188px";
			document.getElementById("callout-c").style.top = "286px";
			document.getElementById("callout-d").style.top = "219px";
			document.getElementById("callout-e").style.top = "219px";

			document.getElementById("callout-a").style.zIndex = "10";
			document.getElementById("callout-b").style.zIndex = "10";
			document.getElementById("callout-c").style.zIndex = "10";
			document.getElementById("callout-d").style.zIndex = "10";
			document.getElementById("callout-e").style.zIndex = "10";

			document.getElementById("callout-a").style.display = "none";
			document.getElementById("callout-b").style.display = "none";
			document.getElementById("callout-c").style.display = "none";
			document.getElementById("callout-d").style.display = "none";
			document.getElementById("callout-e").style.display = "none";

			}
		}
}

function hideCallout(theCallout) {


			var whatCallout = "callout-" + theCallout;

			document.getElementById(whatCallout).style.display = "none";

	}

function showCallout231(theCallout) {

			var whatCallout = "callout-" + theCallout;

			document.getElementById(whatCallout).style.display = "block";

}

function showCallout235(theCallout) {

			var whatCallout = "callout-" + theCallout;

			document.getElementById(whatCallout).style.display = "block";

}

function showCallout239(theCallout) {

			var whatCallout = "callout-" + theCallout;

			document.getElementById(whatCallout).style.display = "block";

}

function setActiveStyleSheet(title) {
   var i, a, main;
   for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
     if(a.getAttribute("rel").indexOf("style") != -1
        && a.getAttribute("title")) {
       a.disabled = true;
       if(a.getAttribute("title") == title) a.disabled = false;
     }
   }
  }



function showLeftNav() {

		document.getElementById("leftNavContainer").style.visibility = "visible";

	}

function swapContent(num) {


	var i = num;
	var j = num+1;
	var clickedImg = "imgNavSq" + j;

	document.getElementById('pageContent').innerHTML = contentArray[i];
	document.getElementById('imageCaptionContainer').innerHTML = captionArray[i];

	//turn them all off:

	for (var c=1; c<=numImages; c++) {

		var theElement = "imgNavSq" + c;

		if(document.getElementById(theElement)) {
				document.getElementById(theElement).src = "images/imgNav-off-"+c+".gif";
			}

		}




	//turn the clicked one on:

	if(document.getElementById(clickedImg)) {

			var linkID = "imgnav" + num;

			document.getElementById(clickedImg).src = "images/imgNav-on-"+j+".gif";
			//document.getElementById(linkID).blur();


		}

	}


function swapImage(path) {

	var theImage = path;
	document.getElementById('pageMainImage').src = theImage;


	}

function showMe(what) {

	var theElement = what;


	document.getElementById(theElement).style.display = "block";
	document.getElementById("cover").style.display = "block";

	}


function hideMe(what) {

	var theElement = what;
	document.getElementById(theElement).style.display = "none";
	document.getElementById("cover").style.display = "none";

	}


function processFormB(thisForm) {

	document.getElementById("inqNameB").style.backgroundColor="#ffffff";
	document.getElementById("inqEmailB").style.backgroundColor="#ffffff";
	document.getElementById("inqPhoneB").style.backgroundColor="#ffffff";

	var errorCount=0;
	var nameVal = document.getElementById("inqNameB").value;
	var emailVal = document.getElementById("inqEmailB").value;
	var phoneVal = document.getElementById("inqPhoneB").value;
	var whatsChecked;
	var theForm = document.getElementById(thisForm);
	var radioLen = thisForm.contactMethodB.length;

	var confirmationText = "<span class='medium'>Thank you for your interest in Henrybuilt.<br><br>A sales representative will contact you within one business day.<br><br>If you have chosen e-mail as your preferred contact method and have not heard from us by the end of one business day, please check your spam filter.</span>";

	for(var i=0;i<=radioLen-1;i++) {

		if(thisForm.contactMethodB[i].checked) { whatsChecked = thisForm.contactMethodB[i].value; }

		}

	if(
		nameVal==""
		) {

				document.getElementById("inqNameB").style.backgroundColor="#990000";
				document.getElementById("inqNameB").style.color="#ffffff";
				document.getElementById("formErrorB").style.display = "block";
				errorCount++;
				}
	else

		{
				document.getElementById("inqNameB").style.backgroundColor="#ffffff";
				document.getElementById("inqNameB").style.color="#333333";
	}



	// if contact method = phone:
	if(whatsChecked=="phone") {

		document.getElementById("inqEmailB").style.backgroundColor="#ffffff";
		document.getElementById("inqEmailB").style.color="#333333";

		//validate phone number
		if(phoneVal=="" || phoneVal.length <10)
		{
			document.getElementById("inqPhoneB").style.backgroundColor="#990000";
			document.getElementById("inqPhoneB").style.color="#ffffff";
		document.getElementById("formErrorB").style.display = "inline";
			errorCount++;

			}


			else { document.getElementById("inqPhoneB").style.backgroundColor="#ffffff";
			document.getElementById("inqPhoneB").style.color="#333333"; }

		}

	// if contact method = email:
		if(whatsChecked=="email") {

			document.getElementById("inqPhoneB").style.backgroundColor="#ffffff";
			document.getElementById("inqPhoneB").style.color="#333333";

			if(emailVal=="" || emailVal.length < 6 || emailVal.indexOf("@")==-1 || emailVal.indexOf(".")==-1) {

					document.getElementById("inqEmailB").style.backgroundColor="#990000";
					document.getElementById("inqEmailB").style.color="#ffffff";
					errorCount++;
					document.getElementById("formErrorB").style.display = "inline";

					}

			else {

					document.getElementById("inqEmailB").style.backgroundColor="#ffffff";
					document.getElementById("inqEmailB").style.color="#333333";

				}

		}


	if(errorCount==0) {

		thisForm.submit();
		document.getElementById("formErrorB").style.display = "none";
		document.getElementById("formConfirm").innerHTML = confirmationText;
		//document.getElementById("pageTitle").innerHTML = "thank you.";



		}


}


function processForm(thisForm) {

	document.getElementById("inqName").style.backgroundColor="#ffffff";
	document.getElementById("inqEmail").style.backgroundColor="#ffffff";
	document.getElementById("inqPhone").style.backgroundColor="#ffffff";

	var errorCount=0;
	var nameVal = document.getElementById("inqName").value;
	var emailVal = document.getElementById("inqEmail").value;
	var phoneVal = document.getElementById("inqPhone").value;
	var whatsChecked;
	var theForm = document.getElementById(thisForm);
	var radioLen = thisForm.contactMethod.length;

	var confirmationText = "<span class='medium'>Thank you for your interest in Henrybuilt.<br><br>A sales representative will contact you within one business day.<br><br>If you have chosen e-mail as your preferred contact method and have not heard from us by the end of one business day, please check your spam filter.</span><br><br><span class='small'><a href='javascript:hideMe(\"inquiryForm\")'>close</a></span>";

	for(var i=0;i<=radioLen-1;i++) {

		if(thisForm.contactMethod[i].checked) { whatsChecked = thisForm.contactMethod[i].value; }

		}

	if(
		nameVal==""
		) {

				document.getElementById("inqName").style.backgroundColor="#990000";
				document.getElementById("inqName").style.color="#ffffff";
				document.getElementById("formError").style.display = "block";
				errorCount++;
				}
	else

		{
				document.getElementById("inqName").style.backgroundColor="#ffffff";
				document.getElementById("inqName").style.color="#333333";
	}



	// if contact method = phone:
	if(whatsChecked=="phone") {

		document.getElementById("inqEmail").style.backgroundColor="#ffffff";
		document.getElementById("inqEmail").style.color="#333333";

		//validate phone number
		if(phoneVal=="" || phoneVal.length <10)
		{
			document.getElementById("inqPhone").style.backgroundColor="#990000";
			document.getElementById("inqPhone").style.color="#ffffff";
		document.getElementById("formError").style.display = "inline";
			errorCount++;

			}


			else { document.getElementById("inqPhone").style.backgroundColor="#ffffff";
			document.getElementById("inqPhone").style.color="#333333"; }

		}

	// if contact method = email:
		if(whatsChecked=="email") {

			document.getElementById("inqPhone").style.backgroundColor="#ffffff";
			document.getElementById("inqPhone").style.color="#333333";

			if(emailVal=="" || emailVal.length < 6 || emailVal.indexOf("@")==-1 || emailVal.indexOf(".")==-1) {

					document.getElementById("inqEmail").style.backgroundColor="#990000";
					document.getElementById("inqEmail").style.color="#ffffff";
					errorCount++;
					document.getElementById("formError").style.display = "inline";

					}

			else {

					document.getElementById("inqEmail").style.backgroundColor="#ffffff";
					document.getElementById("inqEmail").style.color="#333333";

				}

		}


	if(errorCount==0) {

		thisForm.submit();
		document.getElementById("inquiryForm").style.padding = "20px";
		document.getElementById("inquiryForm").innerHTML = confirmationText;

		}



}


function loadInquiry() {

	setActiveStyleSheet('text');
	document.getElementById('pageContent').innerHTML = "";
	document.getElementById('imageNavContainer').style.display = "none";
	document.getElementById('pageTitle').innerHTML = "request a quote";

	var formCode = "<form id=\"inqFrmB\" method=\"post\" action=\"processContactb.php\" target=\"formFrame\"><table width=95% cellpadding=0 cellspacing=0 border=0> 				 		<tr> 			<td width=1%><input type=\"radio\" id=\"interestB\"  name=\"interestB\" value=\"kitchens\" checked></td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">kitchen</td> 		</tr> 		 		<tr> 			<td width=1%><input type=\"radio\" id=\"interestB\"  name=\"interestB\" value=\"furniture\"></td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">furniture</td> 		</tr> 		 		<tr> 			<td width=1% style=\"padding-bottom:5px;\"><input type=\"radio\" id=\"interestB\"  name=\"interestB\" value=\"whole house systems\"></td><td style=\"font-size:12px; color:#666666; font-weight:normal;padding-bottom:5px;\">whole house systems</td> 		</tr> 		 		 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;\">Notes about your project</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;padding-bottom:5px;\"> 				<textarea maxlength=20 id=\"commentsB\" name=\"commentsB\" style=\"width:100%;height:100px;overflow:auto;\" class=\"formFieldLeftAlign\"></textarea> 			</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;\">Name</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"padding-bottom:5px;\"><input type=\"text\" id=\"inqNameB\" name=\"inqNameB\" style=\"height:22px;border:1px solid #cccccc;padding:3px;width:200px;font-family:verdana;arial;sans-serif;font-size:10px;\" class=\"formFieldLeftAlign\" value=\"\"></td> 		</tr> 	<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;\">I am</td> 		</tr> 		 		<tr> 			<td width=1%><input type=\"radio\"name=\"iam\" id=\"iam\" checked value=\"a homeowner\"</td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">a homeowner</td> 		</tr> 		 		<tr> 			<td width=1%><input type=\"radio\"name=\"iam\" id=\"iam\" value=\"a trade professional\"</td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">a trade professional</td> 		</tr>	 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;\">Contact me via</td> 		</tr> 		 		<tr> 			<td width=1%><input type=\"radio\"name=\"contactMethodB\" id=\"contactMethodB\" checked value=\"email\"</td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">e-mail</td> 		</tr> 		 		<tr> 			<td width=1%><input type=\"radio\"name=\"contactMethodB\" id=\"contactMethodB\" value=\"phone\"</td><td style=\"font-size:12px; color:#666666; font-weight:normal;\">phone</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;padding-top:5px;\">E-mail address</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"padding-bottom:5px;\"><input type=\"text\" id=\"inqEmailB\" name=\"inqEmailB\" style=\"height:22px;border:1px solid #cccccc;padding:3px;width:200px;font-family:verdana;arial;sans-serif;font-size:10px;\" class=\"formFieldLeftAlign\" value=\"\"></td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"font-size:12px; color:#666666; font-weight:normal;\">Area code + phone number</td> 		</tr> 		 		<tr> 			<td colspan=2 style=\"padding-bottom:15px;\"><input type=\"text\" id=\"inqPhoneB\" name=\"inqPhoneB\" style=\"height:22px;border:1px solid #cccccc;padding:3px;width:200px;font-family:verdana;arial;sans-serif;font-size:10px;\" class=\"formFieldLeftAlign\" value=\"\"></td> 		</tr> 		 		<tr> 			<td colspan=2><Input type=Image id=\"inqSubmitB\" src=\"images/btn_submit.gif\" style=\"border:none;\" onClick=\"processFormB(inqFrmB);\" align=middle><img  align=middle id=\"formErrorB\" src=\"images/form-error.gif\" style=\"margin-left:10px;display:none;\"><span id=\"formConfirm\" style=\"display:block;margin-top:10px;\"></span></td> 		</tr> 		 		 		<tr> 			<td colspan=2 align=left style=\"font-size:14px; color:#666666; font-weight:normal;padding-top:15px;\">Call us in new York at 212.966.5797 or in Seattle at 206.624.9270</td> 		</tr> 		 	</table></form>";

	document.getElementById('pageContent').innerHTML = formCode;





	}


