images_go = new Tables (2)

images_go[1].src = 'themes/Wi_Flyed/images/go_01.jpg';
images_go[2].src = 'themes/Wi_Flyed/images/go_02.jpg';

function Tables(n) 
{
	this.length = n
	for (var i = 1; i<=n; i++) 
	{
		this[i] = new Image(31,18)
    }
	return this
}

function image(num)
{
	document.getElementById('go').src = images_go[num].src;
}

function show_flash(w, h, swf, color, fvar)
{
    document.write("<object type='application/x-shockwave-flash' data='"+swf+"' width='"+w+"' height='"+h+"'>");
    document.write("<param name='movie' value='"+swf+"' />");
    document.write("<param name='pluginurl' value='http://www.macromedia.com/go/getflashplayer' />");
    document.write("<param name='wmode' value='transparent' />");
    document.write("<param name='bgcolor' value='"+color+"' />");
    document.write("<param name='menu' value='false' />");
    document.write("<param name='quality' value='best' />"); 
    document.write("<param name='scale' value='exactfit' />"); 
    document.write("<param name='flashvars' value='"+fvar+"' />");
    document.write("</object>");
}