function insertFlash(url, width, height, alt_text, is_transparent, object_id)
{
	document.write('<object ');
	if(object_id) document.write('id="'+object_id+'" ');
	document.writeln('classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" alt="'+alt_text+'">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
	document.writeln('<param name="allowfullscreen" value="true" />');
	document.writeln('<param name=movie value="'+url+'>"');
	document.writeln('<param name=quality value=high>');
	if(is_transparent>0) document.writeln('<param name="wmode" value="transparent">');
	document.write('<embed src="'+url+'" quality=high allowfullscreen=true  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" ');
	if(is_transparent>0) document.write('wmode="transparent" ');
	document.writeln('alt="'+alt_text+'"></embed>');
	document.writeln('</object>');
}

function popup(_name, _width, _height, _left, _top, _scroll)
{	
	var obj=window.open(_name, 'viewer', 'width='+_width+', height='+_height+',left='+_left+',top='+_top+',status=no,scrollbars='+_scroll+',resizable=yes,location=no,menubar=no,toolbar=no');

	if(obj==null || typeof(obj)=="undefined")
	{
		alert("Please disable pop-up blocker feature of your browser.");
	}
}
