// JavaScript Document
function  dispalyFlash(flashsrc,flashwidth,flashheight,intN)
{
	var documents='<embed src="'+flashsrc+'" quality="high"  width="'+flashwidth+'" height="'+flashheight+'" ';
	if (intN==1)
	{
		documents=documents+' wmode="transparent" ';
	}
	documents=documents+'type="application/x-shockwave-flash"></embed>';
	document.write(documents);
}

