<!--// write flashfunction writeSWF(objSWF, intSWFWidth, intSWFHeight,fv) {	//DONT NEED THESE BECAUSE THE SIZE IS ALLREADY DEFINED IN ACTUAL PHP FILES (AND THERE ARE MANY DIFFERENT SIZE SWFS THAT CALL THIS FUNCTION)  // intSWFWidth = 942;  //intSWFHeight = 280;   if(fv != ""){  	var flashv =  fv + "&pageIndex="+pageIndex + "&subIndex=" + subIndex;  }else{  	var flashv = "pageIndex="+pageIndex + "&subIndex=" + subIndex;  }	  document.writeln('<object');   document.writeln('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"');  document.writeln('width="' + intSWFWidth + '"');  document.writeln('height="' + intSWFHeight + '">');  document.writeln('<param name="movie" value="' + objSWF + '">');  document.writeln('<param name="menu" value="false">');  document.writeln('<PARAM NAME=bgcolor VALUE="#FFFFFF">');  document.writeln('<param name="quality" value="best">');  //document.writeln('<PARAM name="BASE" value=".">');  document.writeln('<param name="scale" value="noborder">');  document.writeln('<PARAM name="FlashVars" value="' +  flashv  + '">');  document.writeln('<embed');  document.writeln('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"');   document.writeln('width="' + intSWFWidth + '"');  document.writeln('height="' + intSWFHeight + '"');    document.writeln('src="' + objSWF + '"');  document.writeln('FlashVars="' +  flashv  +'"');  document.writeln('menu="false"');  document.writeln('quality="best" bgcolor="#FFFFFF"');  //document.writeln('quality="best" bgcolor="#000000" BASE="."');  document.writeln('scale="noborder">');  document.writeln('</embed>');  document.writeln('</object>');}// This is the implementation of SimpleSwap// by Jehiah Czebotar// Version 1.1 - June 10, 2005// Distributed under Creative Commons//// Include this script on your page// then make image rollovers simple like:// <img src="/images/ss_img.gif" oversrc="/images/ss_img_over.gif">//// http://jehiah.com/archive/simple-swap// function SimpleSwap(el,which){  el.src=el.getAttribute(which || "origsrc");}function SimpleSwapSetup(){  var x = document.getElementsByTagName("img");  for (var i=0;i<x.length;i++){    var oversrc = x[i].getAttribute("oversrc");    if (!oversrc) continue;              // preload image    // comment the next two lines to disable image pre-loading    x[i].oversrc_img = new Image();    x[i].oversrc_img.src=oversrc;    // set event handlers    x[i].onmouseover = new Function("SimpleSwap(this,'oversrc');");    x[i].onmouseout = new Function("SimpleSwap(this);");    // save original src    x[i].setAttribute("origsrc",x[i].src);  }}var PreSimpleSwapOnload =(window.onload)? window.onload : function(){};window.onload = function(){PreSimpleSwapOnload(); SimpleSwapSetup();}// stops emails form being indexed by spammersfunction getAddy(e,u){location.href = 'mailto:' + e + '@' + u;}// js pop upfunction poppage(mypage,w,h,s,winname){	var scr = s;	var winl = (screen.width-w)/2;	var wint = (screen.height-h)/2;	if(winname == ""){		var winname = "loading_"+ w + "_" + h;	}	var settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scr+',toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no';	win=window.open(mypage,winname,settings)	win.focus()}function requestQueryStr(name, noval){	var loc = self.location.search;	if (loc.length>0) {		name = name+'=';		var str = loc.substring(loc.indexOf('?')+1, loc.length);		var start = str.indexOf(name);		if (start==-1) {			return noval;		}		start += name.length;		var end = str.indexOf('&', start);		if (end==-1) {			end = str.length;		}		return str.substring(start,end);	} else {		return noval;	}}// for dynamic footer codevar footerColourA = ['#------', '#B0B0B0','#FEA6A7','#C7B0D7','#FFD0B5','#AFDAA6','#D0C3BA','#C9ECFF','#F7BBC3','F1BEEC','C4D2D2','FFE67A'];function viewTC(){	poppage('terms-conditions.html','500','500','yes','termsC');}function viewPP(){	poppage('privacy.html','500','500','yes','privacy');}//-->