function getSWF(swFile, swWmode)
	{
		var str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" VIEWASTEXT>';
		str += ' <param name="movie" value="'+swFile+'" /> ';
		str += ' <param name="quality" value="high" /> ';
		// wmode = window, transparent, opaque
		str += ' <param name="wmode" value="'+swWmode+'" /> ';
		str += ' <embed src='+swFile+' width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed> ';
		str += ' </object> ';
		document.write(str);
	}

function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { 
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}