
var back_out=new Object;
var back_over=new Object;

var next_out=new Object;
var next_over=new Object;

back_out.src="./css/btn_prev.gif";
back_over.src="./css/btn_prev_over.gif";

next_out.src="./css/btn_next.gif";
next_over.src="./css/btn_next_over.gif";

function swap_image(imgDocID, imgObjName) {

	document.images[imgDocID].src = eval(imgObjName + ".src");

}

function SWF_embed(objSrc, id, width, height) {

//==============================================================================//
// SWF_embed - A function to embed Flash objects on a page without IE panicking //
// =============================================================================//
// Arguments:                                                                   //
//            objSrc - The filename of the Flash object.                        //
//            id     - A unique identifier for the object.                      //
//            width  - The display width of the object.                         //
//            height - The display height of the object.                        //
//                                                                              //
//==============================================================================//

	document.write('<center>');
	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" width="' + width + '" height="' + height + '" id="' + id + '">');
	document.write('<param name="allowScriptAccess" value="always" />');
	document.write('<param name="movie" value="' + objSrc + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="align" value="middle" />');
	document.write('<embed src="' + objSrc + '" quality="high" width="' + width +'" height="' + height + '" name="' + id + '" allowScriptAccess="always" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
	document.write('</center>');

}
