function make_flash(arquivo, w, h, version, menu, scale, access, nome, color, vars, wmode){

	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0'");
	document.write(" width='" + w + "' height='" + h + "' vspace='0' hspace='0' align='middle' id='"+nome+"' />");
	document.write("<param name='movie' value='" + arquivo + "' />");
	document.write("<param name='wmode' value='" + wmode + "' />");
	document.write("<param name='quality' value='high' />");
	document.write("<param name='menu' value='"+menu+"' />");
	document.write("<param name='allowScriptAccess' value='"+access+"' />");
	document.write("<param name='bgcolor' value='"+color+"' />");
	document.write("<param name='FlashVars' value='"+vars+"' />");
	document.write("<embed src='" + arquivo + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + w + "' height='" + h + "' FlashVars='" + vars + "' bgcolor='#" + color + "' wmode='"+wmode+"' vspace='0' hspace='0' align='middle' allowScriptAccess='"+access+"' name='"+nome+"'");
	document.write("></embed>");
	document.write("</object>");
}
function open_alert(n){
	window.alert(n);
}
function open_pop(u,w){
	myWindow=window.open("", "Ons Erf", w);
	with (myWindow.document){
		write("<html><head><title>Ons Erf</title></head>");
		write("<body marginHeight='0' marginWidth='0'><img src='"+u+"' /><br></body></html>");
		close();
	}
	myWindow.focus();
}



