
function onClickShowMatch(title, path)
{
	w = window.open(path, "MyWindow","toolbar=no,width=360,height=80,status=no,scrollbars=auto,menubar=no,resizable=no");		
	w.focus();
	if(w)
	{
		w.moveTo(event.clientX, event.clientY);
	}
}

function ShowFlashVideo(imagename)
{
	document.write('<OBJECT id="mediaPlayer" width="320" height="285" ');
	document.write('      classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" ');
	document.write('      codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" ');
	document.write('      standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> ');
	document.write('      <param name="fileName" value="' + imagename + '.wmv"> ');
	document.write('      <param name="animationatStart" value="true"> ');
	document.write('      <param name="transparentatStart" value="false"> ');
	document.write('      <param name="autoStart" value="false"> ');
	document.write('      <param name="howControls" value="true"> ');
	document.write('      <param name="loop" value="false"> ');
	document.write('      <EMBED type="application/x-mplayer2" ');
	document.write('        pluginspage="http://microsoft.com/windows/mediaplayer/en/download/" ');
	document.write('        id="mediaPlayer" name="mediaPlayer" displaysize="4" autosize="-1"  ');
	document.write('        bgcolor="darkblue" showcontrols="true" showtracker="-1" ');
	document.write('        showdisplay="0" showstatusbar="-1" videoborder3d="-1" width="320" height="285" ');
	document.write('        src="http://www.sloughladiesfc.co.uk/video/' + imagename + '.wmv" autostart="false" designtimesp="5311" loop="false"> ');
	document.write('      </EMBED> ');
	document.write('</OBJECT> ');
}

function ShowFlashImage(imagename)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'); 
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'); 
	document.write(' WIDTH="100%" HEIGHT="90%" id="viewimage" ALIGN="">'); 
	document.write(' <PARAM NAME=movie VALUE="../flash/viewimage2.swf?imagename=' + imagename + '"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="../flash/viewimage2.swf?imagename=' + imagename + '" quality=high bgcolor=#FFFFFF  WIDTH="100%" HEIGHT="87%" NAME="viewimage" ALIGN=""'); 
	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	document.write('</OBJECT>'); 
}

function ShowFlashTitle(titleText)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '); 
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write(' WIDTH="95%" HEIGHT="36" id="title" STYLE="POSITION: relative; LEFT: 3%;" > '); 
	document.write('<PARAM NAME=movie VALUE="flash/v2_title.swf?titleText=' + titleText + '&">'); 
	document.write('<PARAM NAME=loop VALUE=false> ');
	document.write('<PARAM NAME=menu VALUE=false> ');
	document.write('<PARAM NAME=quality VALUE=high> '); 
	document.write('<PARAM NAME=wmode VALUE=transparent> '); 
	document.write('<PARAM NAME=bgcolor VALUE=#FFFFFF> ');
	document.write('<EMBED src="flash/v2_title.swf?titleText=' + titleText + '&"'); 
	document.write('" loop=false menu=false quality=high wmode=transparent bgcolor=#FFFFFF  WIDTH="95%" HEIGHT="36" NAME="title" ALIGN="" '); 
	document.write('TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> '); 
	document.write('</OBJECT><BR><BR>');
}
