﻿function swfPicChange(sizeArray,pics,links,texts) {
	var focus_width=sizeArray[0];
	var focus_height=sizeArray[1];
	var text_height=sizeArray[2];
	var swf_height = focus_height+text_height;
	var swf_file = "/flash/preview.swf";
	var str = '<object ID="focus_flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">';
	str += '<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+swf_file+'"><param name="quality" value="high"><param name="bgcolor" value="#E7E7E7">';
	str += '<param name="menu" value="false"><param name=wmode value="opaque">';
	str += '<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">';
	str += '<embed ID="focus_flash" src="'+swf_file+'" wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#E7E7E7" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>';
	str += '</object>';
	document.writeln(str);
}