// JavaScript Document
function setflash(id, varname, value){
	var flashobject=eval("window.document."+id);
	if(flashobject){
		flashobject.SetVariable(varname, value);
	}
}