// v1.0
//Copyright 2008 LA Marketing & Design
var showtgt="";
var showint=0;
var viewwin=0;
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
function makeFlash(mfID,mfSize,mfSection){
	var wdth=591;
	var hght=386;
	if (mfSize=="small"){
		wdth=342;
		hght=266;
	}
	var wmmode="";
	var fvars="igroup="+mfSize+"&section="+mfSection;
	var movid=mfID;
	var clssId="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";
	var cdeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0";
	var plugPage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash";
	var tpe="application/x-shockwave-flash";
	var wrtStrf="<object";
	wrtStrf+=" classid='"+clssId+"'";
	wrtStrf+=" codebase='"+cdeBase+"'";
	wrtStrf+=" id='"+movid+"'";
	wrtStrf+=" width='"+wdth+"'";
	wrtStrf+=" height='"+hght+"'";
	wrtStrf+=" style='width:"+wdth+";height:"+hght+"'";
	wrtStrf+=">";
	wrtStrf+="<param name='allowScriptAccess' value='always' />";
	wrtStrf+="<param name='movie' value='http://www.cullingfordcarpets.co.uk/viewer/viewer_"+mfSize+".swf' />";
	wrtStrf+="<param name='quality' value='high' />";
	if (wmmode=="transparent"){
		wrtStrf+="<param name='wmode' value='transparent' />";
	}
	if (fvars!=""){
		wrtStrf+="<param name='FlashVars' value='"+fvars+"' />";
	}
	wrtStrf+="<embed";
	wrtStrf+=" src='http://www.cullingfordcarpets.co.uk/viewer/viewer_"+mfSize+".swf'";
	wrtStrf+=" quality='high'";
	wrtStrf+=" pluginspage='"+plugPage+"'";
	wrtStrf+=" type='"+tpe+"'";
	wrtStrf+=" width='"+wdth+"'";
	wrtStrf+=" height='"+hght+"'";
	wrtStrf+=" swLiveConnect=true";
	wrtStrf+=" id='"+movid+"'";
	wrtStrf+=" allowScriptAccess='always'";
	wrtStrf+=" name='"+movid+"'";
	if (wmmode=="transparent"){
		wrtStrf+=" wmode='transparent'";
	}
	if (fvars!=""){
		wrtStrf+=" FlashVars='"+fvars+"'";
	}
	wrtStrf+="></embed>";
	wrtStrf+="</object>";
	document.write(wrtStrf);
}
function callViewer(cvTgt){
	showtgt=cvTgt;
	showint=setTimeout("showView()",500);
}
function showView(){
	if (viewwin){
		if (!viewwin.closed){
			viewwin.close();
		}
	}
	var tmparr=showtgt.split("/");
	var tmpimg=tmparr[6].split(".");
	viewwin=open(('view_images.php?img='+tmpimg[0]+'&amp;group='+tmparr[4]),'viewwin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=500,height=522,left=20,top=20,screenX=20,screenY=20');
}