// JavaScript Document

function radio() {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0" width="304" height="60">');
	document.write('<param name="movie" value="radio.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="BGCOLOR" value="#193021" />');
	document.write('<embed src="radio.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"');
	document.write('type="application/x-shockwave-flash" width="304" height="60" bgcolor="#193021"></embed>');
	document.write('</object>');
}


function imageviewer() {
	/*document.write('This will be the image viewer');*/
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0" width="470" height="435">');
	document.write('<param name="movie" value="imageviewer2.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="BGCOLOR" value="#193021" />');
	document.write('<embed src="imageviewer2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="470" height="435" bgcolor="#193021"></embed>');
	document.write('</object>');
	document.write('');
}

function flash(file, width, height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,47,0" width="'+width+'" height="'+height+'">');
	document.write('<param name="movie" value="'+file+'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="BGCOLOR" value="#193021" />');
	document.write('<embed src="'+file+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" bgcolor="#193021"></embed>');
	document.write('</object>');
	document.write('');
}
