
function commM()
{
//document.write("here")
	var qsParm = new Array();
	function qs() {
		var query = window.location.search.substring(1);
		var parms = query.split('&');
		for (var y=0; y<parms.length; y++) {
    		var pos = parms[y].indexOf('=');
    		if (pos > 0) {
       			var key = parms[y].substring(0,pos);
       			var val = parms[y].substring(pos+1);
       			qsParm[key] = val;
       		}
   		}
	}
qs();
State = qsParm['State'];
//comCounty = qsParm['comCounty'];
CommPage = qsParm['Community'];
//document.write("comm/state:"+CommPage+" "+State)

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="410" height="345">\n');
  document.write('<param name="movie" value="/images2/communityPictureC.swf">\n');
  document.write('<param name="quality" value="high">\n');
  document.write('<param name="FlashVars" value="State='+State+'&Community='+CommPage+'">\n');
  document.write('<embed src="/images2/communityPictureC.swf" quality="high" flashvars="State='+State+'&CommPage='+CommPage+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="410" height="345"></embed>\n');
document.write('</object>\n');

}

