
function plantinfo(state){
	var strState = state

switch (strState) {

case "IA":
	plants.innerHTML = '<span style=cursor:hand class="corporate" title="Get Map" onClick=getmap("00")>CORPORATE OFFICE   </span><br>' + 
							'1610 Avenue "N" <br>' +
							'Council Bluffs, IA 51501 <br>' +
							'Mailing Address: <br>' +
							'PO Box 1017 <br>' +
							'Omaha, NE 68101 <br>' +
							'Phone: (712) 323-9122 <br>' +

							'<span style=cursor:hand class="pouring" title="Get Map" onClick=getmap("01")>COUNCIL BLUFFS, IA   </span><br>' +
							'400 North 10th Street 51503 <br>' +
							'Phone: (712) 323-6718 <br>';
							break;
case "PA":
	plants.innerHTML = '<span style=cursor:hand class="carpet" title="Get Map" onClick=getmap("22")>FAIRLESS HILLS, PA  </span><br>' + 
						'259 Canal Rd 19030 <br>' +
						'Phone: (215) 736-8611 <br>';
							break;
							
case "FL":
	plants.innerHTML = '<span style=cursor:hand class="carpet" title="Get Map" onClick=getmap("23")>ORLANDO, FL  </span><br>' + 
						'1351 Gemini Boulevard 32837  <br>' +
						'Phone: (407) 857-2510  <br>';
							break;
										
case "NE":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("17")>OMAHA, NE  </span><br>' + 
						'6425 North 16th Street 68110 <br>' +
						'Phone: (402) 455-6343 <br>';
							break;
							
case "KS":
	plants.innerHTML = '<span style=cursor:hand class="pouring" title="Get Map" onClick=getmap("02")>NEWTON, KS  </span><br>' + 
						'520 South Payton Street 67114  <br>' +
						'Phone: (316) 283-8600  <br>';
							break;
							
							
case "WI":
	plants.innerHTML = '<span style=cursor:hand class="carpet" title="Get Map" onClick=getmap("03")>MIDDLETON, WI  </span><br>' +
						'Pouring and Carpet Cushion Plant <br>' +
						'2210 Parview Road 53562  <br>' +
						'Phone: (608) 831-4433  <br>' +

						'<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("15")>MIDDLETON, WI   (Madison)  </span><br>' +
						'8430 Murphy Drive 53562  <br>' +
						'Phone: (608) 827-0550  <br>';
							break;
							
							
case "OK":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("04")>OKLAHOMA CITY, OK   </span><br>' + 
						'1101 Metropolitan Avenue 73108  <br>' +
						'Phone: (405) 948-0001  <br>';
							break;
							

case "MO":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("05")>KANSAS CITY, MO   </span><br>' +
						'1207 Macon Road 64116  <br>' +
						'Phone: (816) 842-5745  <br>' +

						'<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("06")>SPRINGFIELD, MO   </span><br>' +
						'1947 East Meadowmere 65804  <br>' +
						'Phone: (417) 865-2930  <br>';
							break;
							
case "CA":
	plants.innerHTML = '<span style=cursor:hand class="pouring" title="Get Map" onClick=getmap("08")>FULLERTON, CA  </span><br>' + 
						'2451 Cypress Way 92831  <br>' +
						'Phone: (714) 871-2344  <br>';
							break;

case "UT":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("12")>WEST VALLEY CITY, UT   </span><br>' +
						'3055 West 2100 South 84119  <br>' +
						'Phone: (801) 886-1193  <br>';
							break;

case "MN":
	plants.innerHTML = '<span style=cursor:hand class="distribution" title="Get Map" onClick=getmap("14")>MINNEAPOLIS, MN WAREHOUSE   </span><br>' +
						'5400 N.E.  Main Street, Ste. 121 55421  <br>' +
						'Phone: (763) 502-7906 & 7907  <br>';
							break;
							
case "CO":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("16")>DENVER, CO   </span><br>' +
						'11475 East 40th Avenue 80239  <br>' +
						'Phone: (303) 371-1492  <br>';
							break;

case "NC":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("18")>HICKORY, NC    </span><br>' +
						'422 15th St. SW  <br>' +
						'Hickory, NC 28602  <br>' +
						'Phone: (828) 324-0321  <br>' +

						'<span style=cursor:hand class="pouring" title="Get Map" onClick=getmap("30")>HIGH POINT, NC  (FFNC)   </span><br>' +
						'1300 Prospect 27260  <br>' +
						'PO Box 7185, 27264  <br>' +
						'Phone: (336) 885-4121  <br>';
							break;

case "TX":
	plants.innerHTML = '<span style=cursor:hand class="fabrication" title="Get Map" onClick=getmap("19")>DALLAS, TX   </span><br>' +
						'8611 Ambassador Row, Ste. A 75247 <br>' +
						'Phone: (214) 905-6043  <br>' +

						'<span style=cursor:hand class="carpet" title="Get Map" onClick=getmap("24")>DALLAS, TX  </span><br>' +
						'10726 Doric Street 75220 <br>' +
						'Phone: (214) 350-6611  <br>';
							break;
													

default :
     plants.innerHTML = "Select State";
}
}



function getmap(num){	
	var storenum = num
	//alert (popupImage)
	newwindow=window.open('maps/' + storenum + '.gif','GetMap',
							'left=20,top=20,width=790,height=625,directories=no,menubar=no,toolbar=no,location=no,scrollbars=auto,resizable=no');
	}
