// JavaScript Document

function writeFlash() {
	//alert(vName);
	// appearance vars, these can be customized to your liking
	var width = '200';
	var height = '200';
	var src = 'm/f/playerSmall.swf';
	// queries -- type in the variables you want to send to flash here
	var queries = '?vName='+QueryString('vName');
	var wmode = 'opaque';
	
	
	// assemble flash obj
	var l1 = '<div style="z-index:0;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'">';
	var l2 = '<param name="movie" value="'+src+queries+'" />';
	var l3 = '<param name="quality" value="high" /><param name="wmode" value="'+wmode+'" />';
	var l4 = '<embed src="'+src+queries+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" wmode="'+wmode+'"></embed>';
	var l5 = '</object></div>';

	// write all lines
	document.write(l1+l2+l3+l4+l5)
}

function gallery(){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="660" height="346" title="Vehicle Gallery"><param name="movie" value="m/f/gallery5wide.swf" /><param name="quality" value="high" /><param name="wmode" value="opaque" /><embed src="m/f/gallery5wide.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="660" height="346" wmode="opaque"></embed></object>');	
}