//*******************************************************
//************************Flash Writer*******************
//*******************************************************


function writeFlash(wSwf,wWidth,wHeight,wId)
{	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+wWidth+'" height="'+wHeight+'" id="'+wId+'" align="">');
  	document.write('<param name="movie" value="'+wSwf+'">');
	document.write('<embed src="'+wSwf+'" quality="high" width="'+wWidth+'" height="'+wHeight+'" name="'+wId+'" align="" type="application/x-shockwave-flash" plug inspage="http://www.macromedia.com/go/getflashplayer">');
	document.write('</object>');
}

//*******************************************************
//************************Flash Writer*******************
//*******************************************************

function openPopUp(theURL,winName,features) {
	window.open(theURL,winName,features);
	}

	// Centre the popup by putting the variables in width & height
	var centreH;
	var centreW;

	centreH = (screen.height - 440)/2;
	centreW = (screen.width - 450)/2;
