function belongNoAp()
{
var flashObject = '	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="362" height="298">'
+ '            	 <param name="movie" value="/Neighborhoods/images/belongNoAp.swf" />'
+ '          	 <param name="quality" value="high" />'
+ '      	  	<param name="wmode" value="transparent" />'
+ '           	<embed src="/Neighborhoods/images/belongNoAp.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="362" height="298" wmode="transparent"></embed>'
+ '    </object>'

document.write(flashObject);
	
}

function belongWithAp()
{
var flashObject = '	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="362" height="298">'
+ '            	 <param name="movie" value="/Neighborhoods/images/belong.swf?image=' + document.getElementById("apImage").value + '" />'
+ '          	 <param name="quality" value="high" />'
+ '      	  	<param name="wmode" value="transparent" />'
+ '           	<embed src="/Neighborhoods/images/belong.swf?image=' + document.getElementById("apImage").value + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="362" height="298" wmode="transparent"></embed>'
+ '    </object>'

document.write(flashObject);
	
}


function homeFlash()
{
var flashObject = '	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="1000" height="399">'
+ '            	 <param name="movie" value="/Neighborhoods/Life2.swf" />'
+ '          	 <param name="quality" value="high" />'
+ '      	  	<param name="wmode" value="transparent" />'
+ '           	<embed src="/Neighborhoods/Life2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1000" height="399" wmode="transparent"></embed>'
+ '    </object>'

document.write(flashObject);
	
}


function flashThumb(name,URL)
{
	var flashObject = ' <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="196" height="92" border="0">'
	+ '      <param name="movie" value="/Neighborhoods/images/thumbnail.swf?image=' + document.getElementById(name).value + '&link=' + document.getElementById(URL).value + '" />'
	+ '      <param name="quality" value="high" />'
	+ '	     <param name="wmode" value="transparent" />'
	+ '      <embed src="/Neighborhoods/images/thumbnail.swf?image=' + document.getElementById(name).value + '&link=' + document.getElementById(URL).value + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="196" height="92" wmode="transparent"></embed>'
	+ '      </object>'

document.write(flashObject);
  
}

function showGallery(gid)
{
	var flashObject = '	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="577" height="360">'
	+ '            	 <param name="movie" value="/Neighborhoods/gallery.swf?gid=' + gid + '" />'
	+ '          	 <param name="quality" value="high" />'
	+ '      	  	<param name="wmode" value="transparent" />'
	+ '           	<embed src="/Neighborhoods/gallery.swf?gid=' + gid + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="577" height="360" wmode="transparent"></embed>'
	+ '    </object>'
	document.getElementById("Gallery").innerHTML = flashObject;
	document.getElementById("Gallery").style.display = "block";
}

function closeGallery()
{
	document.getElementById("Gallery").style.display = "none";
	document.getElementById("Gallery").innerHTML = "";
}


