function SendDataToFlashMovie() {
	return window.flashvars.toString();
}


function create(FO, FOType) {
	if (FOType == "Loc") {
	document.write (
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + FO.width + '" height="' + FO.height + ' "id="flashObject" wmode="transparent">' +
	'<PARAM NAME="allowScriptAccess" value="sameDomain">' +
	'<PARAM NAME=movie VALUE="' + FO.movie + '">' + 
	'<PARAM NAME="quality" value="high">' +
	'<PARAM NAME="wmode" value="transparent">' +
	'<EMBED src="' + FO.movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + FO.width + '" height="' + FO.height + '" name="flashObject" allowScriptAccess="sameDomain" wmode="transparent"></embed></object>' 
			);
	
	} else {
		document.write (
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + FO.width + '" height="' + FO.height + '" wmode="transparent">' +
	'<PARAM NAME=movie VALUE="' + FO.movie + '">' + 
	'<PARAM NAME="quality" value="high">' +
	'<PARAM NAME="wmode" value="transparent">' +
	'<EMBED src="' + FO.movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + FO.width + '" height="' + FO.height + '" wmode="transparent">' +
	'</embed></object>' 
			);
	};
	

};

var win = null;
function p11pop(theURL,winName,features,w,h,centered) { //v2.0
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	if (centered == 'yes') {
	realFeatures = (features+',top='+TopPosition+',left='+LeftPosition+',width='+w+',height='+h);
	}
	else {
	realFeatures = (features+',width='+w+',height='+h+'left=0,top=0');
	}
	win = window.open(theURL,winName,realFeatures);
}