// this is for the feature list.
function placeFeatureList()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="700" height="300" title="adilas.biz - Tools and Features">');
	document.write('<param name="movie" value="images/feature_list.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="images/feature_list.swf" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="300"></embed>');
	document.write('</object>');
}

// set up a function to help with the flash barcode generator. the application can handle a number of dynamic variables.
// these will all be passed in on the URL string. the arguments are the corp name, the part number, the formatted price, the 
// actual barcode to decode, a time code, the label size, the label type (upc or 128), the corp short name, the part short
// name, the quantity, the description, and the toggle switch between show barcode or show description..
function loadFreeBarcodeFlashDoc(corpName, part, price, barcode, cTimeCode, labelSize, labelType, corpShort, partShort, qty, description, barcodeSwitch)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0" width="300" height="300" title="adilas.biz free online barcode generator application">');
	document.write('<param name="movie" value="images/adilas_barcode_generator.swf?corpName=');
	document.write(corpName);
	document.write('&part=');
	document.write(part);
	document.write('&price=');
	document.write(price);
	document.write('&barcode=');
	document.write(barcode);
	document.write('&cTimeCode=');
	document.write(cTimeCode);
	document.write('&labelSize=');
	document.write(labelSize);
	document.write('&labelType=');
	document.write(labelType);
	document.write('&corpShort=');
	document.write(corpShort);
	document.write('&partShort=');
	document.write(partShort);
	document.write('&qty=');
	document.write(qty);
	document.write('&description=');
	document.write(description);
	document.write('&barcodeSwitch=');
	document.write(barcodeSwitch);
	document.write('">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/adilas_barcode_generator.swf?corpName=');
	document.write(corpName);
	document.write('&part=');
	document.write(part);
	document.write('&price=');
	document.write(price);
	document.write('&barcode=');
	document.write(barcode);
	document.write('&cTimeCode=');
	document.write(cTimeCode);
	document.write('&labelSize=');
	document.write(labelSize);
	document.write('&labelType=');
	document.write(labelType);
	document.write('&corpShort=');
	document.write(corpShort);
	document.write('&partShort=');
	document.write(partShort);
	document.write('&qty=');
	document.write(qty);
	document.write('&description=');
	document.write(description);
	document.write('&barcodeSwitch=');
	document.write(barcodeSwitch);
	document.write('" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="300"></embed>');
	document.write('</object>');
}
