function embedPageIFrame(source)
{
	document.write( '<iframe name="content" src="' + source + '" width="100%" height="100%" scrolling="auto" frameborder="none"></iframe> ' );
}

function embedFlashObject(asset, height, width, color, xmlPath, stylesPath)
	{
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
		document.write('height="' + height + '"');
		document.write('width="' + width + '">');
		document.write('<param name="src" value="' + asset + '">');
		document.write('<param name="allowScriptAccess" value="sameDomain" />');
		document.write('<param name="FlashVars" value="xmlPath=' + xmlPath + '&stylesPath=' + stylesPath + '" />');
		document.write('<param name="align" value="middle">');
		document.write('<param name="quality" value="high">');
		document.write('<param name="bgcolor" value="' + color + '">');
		document.write( '<embed ' );
		document.write( '  src="' + asset + '" ' );
		document.write( '  name="' + name + '"' );
		document.write( '  height="' + height + '" ' );
		document.write( '  width="' + width + '" ' );
		document.write( '  align="middle" ' );
		document.write( '  quality="high" ' );
		document.write( '  allowScriptAccess="sameDomain" ' );
		document.write( '  FlashVars="xmlPath=' + xmlPath + '&stylesPath=' + stylesPath + '"');
		document.write( '  scale="aspect" ' );
		document.write( '  pluginspage="http://www.macromedia.com/go/getflashplayer" ' );
		document.write( '  bgcolor="' + color + '" ' );
		document.write( '  type="application/x-shockwave-flash">' );
		document.write( '</embed>' );
		document.write('</object>');
	}

function showItem(pageid) {
	
	//document.getElementById("img"+pageid).style.border="2px solid red";
	
	var getDetailFrame=document.getElementById("detailFrame");
	getDetailFrame.src="/Halloween/ViewDetail/tabid/223/Default.aspx?id="+pageid;
}