<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>ARMOR - Master in Art of Print Technology</title><meta name="description" content="Supplies, labels, networkprinting, IP security and more........
, "><meta name="author" content="ecBuilder(tm), Multiactive Software Inc">
<style type="text/css">
font.pagetitle { font-family: Verdana, Geneva
; font-weight: bold; font-size: 16pt; font-style: normal; color: 000000;}
font.title { font-family: Verdana, Geneva
; font-weight: bold; font-size: 14pt; font-style: normal; color: 000000;}
font.subtitle { font-family: Verdana, Geneva
; font-size: 14pt; font-style: normal; color: 000000;}
font.normaltext { font-family: Verdana, Geneva
; font-size: 11pt; font-style: normal;}
font.small {font-family: Verdana, Geneva
; font-size: 9pt; font-style: normal;}
font.nav {font-family: Verdana, Geneva
; font-size: 8pt; font-style: normal;}
</style>
<!--Javascript for add to basket-->
<script language="javascript">
<!--//
item_Currency="EURO";
//VARIABLES FOR GLOBAL USE
no_of_order_pages = 200; //the number of possible product pages selected for ordering
function getListValue(list)
{
var listValue = "";
if ( list.selectedIndex != -1 )
{
listValue = list.options[ list.selectedIndex ].value;
}
return( listValue );
}
function getCookieVal (offset)
{
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return document.cookie.substring(offset, endstr);
}
function GetCookie (name)
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (clen>i)
{
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0)
break;
}
return null;
}
function makeArray(n)
{
this.length = n;
for (var i = 0; i<n; i++)
{
this[i] = 0;
}
return this;
}
function addtoCookieArray(cookieName, info)
{
var tmpString=GetCookie(cookieName);
if(GetCookie(cookieName) !=null)
{
tmpString = GetCookie(cookieName) + info + ",";
//append to the current cookie values
document.cookie = cookieName + "=" + tmpString;
}
else
{
tmpString = info + ",";
document.cookie = cookieName + "=" + tmpString;
}
}
//
// This defines an array for holding the user configuration
// cookie contents when parsed out. Increase the count if you need to store more
// but do not forget that the limitation is 4096 bytes
//
// this parses the info stored in the config cookie into the array
function parseIt(cookieName, array)
{
config=GetCookie(cookieName);
config+=""; // make it a string if it was not before
var y = 1;
while(config.indexOf(",") >= 0)
{
var pos = config.indexOf(",");
if (pos==0)
array[y]="";
else
array[y]=unescape(config.substring(0,pos));
y++;
config=config.substring(pos+1,config.length);
}
return y-1;
}
// This modifies the value of the n-th element in the array stored in cookie.
// For integer arrays, it will perform addition to existing value.
// For string arrays, it will perform concatenation.
function addValueInArray(cookieName, index, element)
{
var tmp_array = new makeArray(no_of_order_pages);
total_count=parseIt(cookieName, tmp_array);
tmp_array[index] = eval(tmp_array[index]) + eval(element);
tmp_array[index] = RoundQty( tmp_array[index] );
if (tmp_array[index] > 9999.99)
return 0;
// remove existing cookie
document.cookie = cookieName + "=; expires=Thu, 01-Jan-70 00:00:01 GMT";
// convert from array to cookie
for (i=1; total_count>=i; i++)
addtoCookieArray(cookieName, tmp_array[i]);
return tmp_array[index];
}
// check if input is an integer and it is greater than 0
function isInt(elm)
{
var elmstr = "" + elm;
if (elmstr == "")
return false;
for (var i = 0; elmstr.length>i; i++)
{
if ( elmstr.charAt(i)<"0" || elmstr.charAt(i) > "9")
return false;
}
return true;
}
function RoundQty(elm)
{
var elmstr = "" + elm;
if (elmstr == "")
return 0;
DotExist=0;
DigitAfterDecimal=0;
for (var i = 0; elmstr.length>i; i++)
{
if (elmstr.charAt(i)< "0" || elmstr.charAt(i) > "9")
{
if ((elmstr.charAt(i) == ".") && (DotExist == 0))
DotExist = 1;
else
return 0;
}
else if (DotExist == 1)
{
if (2>DigitAfterDecimal )
DigitAfterDecimal = DigitAfterDecimal + 1 ;
else
{
if (elmstr.charAt(i)>="5")
{
var sTmp100 = elmstr.substring(0, i-3) + elmstr.substring(i-2, i);
nTmp = Number( sTmp100 ) ;
nTmp = nTmp + 1;
var sTmp = "" + nTmp;
if (2>sTmp.length)
sTmp = sTmp.substring(0, sTmp.length - 2) + ".0" + sTmp.substring(sTmp.length - 2, sTmp.length );
else
sTmp = sTmp.substring(0, sTmp.length - 2) + "." + sTmp.substring(sTmp.length - 2, sTmp.length );
return sTmp ;
}
else
return Number( elmstr.substring(0, i) );
}
}
}
return elm;
}
// check for valid quantity and prompt user if there is an error
// if valid is okay, update the hidden variable used by the basket buttons.
//
// "formObj" should equal to something like "document.buynow"
// This function affects the following fields:
// Order_ItemQuantity => the text input box, this is the field that's used to submit to CGI
// LastGoodQuan => the field is used to store previous value in case of mistake
function updateQuantity(formObj)
{
// If quantity is valid, then go on to add stuff to cookie
Qty=RoundQty(formObj.Order_ItemQuantity.value);
if (Qty >=10000 || Qty==0 || formObj.Order_ItemQuantity.value==0)
{
alert ("Please enter a valid number that is greater than 0.01 and less than 9999.99!");
formObj.Order_ItemQuantity.value = formObj.LastGoodQuan.value;
return;
}
formObj.LastGoodQuan.value = Qty;
formObj.Order_ItemQuantity.value = Qty;
}
// return true if add is ok
// return false if add fails
function addtoBasket(productID, productName, productDescription, productSKU, productPrice,
productUnit, productQuantity, productTaxable, productShipping,productWeight,productModel,productOptions)
{
// test if browser supports cookie
document.cookie = "testcookie=mytestvalue";
if (GetCookie("testcookie")!="mytestvalue")
{
alert("Your browser does not appear to support cookies.\nPlease either turn the feature on or use to a different browser.");
return false;
}
// if product already in shopping basket
var tmp_array_ID = new makeArray(no_of_order_pages);
var tmp_array_Options = new makeArray(no_of_order_pages);
var found=0;
total_count=parseIt("productID", tmp_array_ID);
parseIt("productOptions", tmp_array_Options);
if (total_count >= no_of_order_pages)
{
alert("The shopping basket is full. No more items can be added.");
return false;
}
for (i=1; total_count>=i; i++)
{
if (tmp_array_ID[i]==productID && escape(tmp_array_Options[i])==productOptions)
{
found=1;
break;
}
}
if (found!=0)
{
total_quantity=addValueInArray("quantity", i, productQuantity);
}
else
{
addtoCookieArray("productID", productID);
addtoCookieArray("product", productName);
// addtoCookieArray("description", productDescription);
addtoCookieArray("sku", productSKU);
addtoCookieArray("price", productPrice);
addtoCookieArray("unit", productUnit);
addtoCookieArray("quantity", productQuantity);
addtoCookieArray("taxable", productTaxable);
addtoCookieArray("shipping", productShipping);
addtoCookieArray("weight", productWeight);
addtoCookieArray("model", productModel);
addtoCookieArray("productOptions", productOptions);
total_quantity=productQuantity;
}
if (total_quantity == 0)
{
alert(productQuantity + " " + unescape(productName) + "s " + "cannot be added to your shopping basket.\n\nREASON:\nThe maximium number of these items that can be added to your basket is 9999.99.");
return false;
}
window.location.href="basket.htm";
return true;
}
// This function must be called by the inquiry form as an onsubmit action
// formObj would be something like document.forms.inquiry, document.forms.selectoptions
function inquiryNow(inquiryFormObj, selectOptionsFormObj)
{
// find the first ItemOption hidden var index on the inquiry form
for (j = 0; j < inquiryFormObj.elements.length; j++ )
{
if ( inquiryFormObj.elements[j].name == "Order_ItemOptions" )
break;
}
if ( j >= inquiryFormObj.elements.length)
{
return 1;
}
// copy all itemOption hidden var from the buynow's selectoptions form
for ( i = 0; i < selectOptionsFormObj.elements.length; i++ )
{
if ( selectOptionsFormObj.elements[i].name == "Order_ItemOptions" )
{
if ( selectOptionsFormObj.elements[i].type=="select-one" )
inquiryFormObj.elements[j].value = getListValue( selectOptionsFormObj.elements[i] );
else
inquiryFormObj.elements[j].value = selectOptionsFormObj.elements[i].value;
j++;
}
}
return 1;
}
//For order form (not inquiry), reconstruct all the options to a single variable
// formObj would be something like document.forms.selectoptions
function reconstructOptions(formObj)
{
var strOptions="";
var hasComma=0;
for ( i = 0; i < formObj.elements.length; i++ )
{
if ( formObj.elements[i].name == "Order_ItemOptions" )
{
var strTmp="";
if ( formObj.elements[i].type == "select-one" )
strTmp = getListValue(formObj.elements[i]);
else
strTmp = formObj.elements[i].value;
nLen=strTmp.length;
if (nLen > 2 && strTmp.charAt(nLen-1)=='&' && strTmp.charAt(nLen-2)==':')
strOptions += strTmp.substring(0,nLen-1); // strip the & at the end
else
{
strOptions += strTmp + ",";
hasComma=1;
}
}
}
if (hasComma==1)
strOptions=strOptions.substring(0, strOptions.length-1);
return escape(strOptions);
}
function modify_field(inputfield)
{
var returnString = "";
for ( i = 0; i < inputfield.value.length; i++ )
{
var c = inputfield.value.charAt(i);
if (c!="," && c!=":")
returnString += c;
}
if ( returnString != inputfield.value )
{
inputfield.value = returnString;
alert ( "The characters ',' and ':' are not allowed in this field, and therefore are being removed." );
}
}
//-->
</script>
<!--Javascript for multi-currency-->
<script language="javascript">
<!--//
function makeArray(n)
{
this.length=n;
for (var i=0; n>i; i++)
this[i]=0;
return this;
}
// The following lines are generated by XSLT processor
var maxCurrency = 2;
var currencyCodes=new makeArray(2);
var currencySymbols=new makeArray(2);
var currencyCountries=new makeArray(2);
var currencyExchangeRates=new makeArray(2);
currencyCodes[0] = "124";
currencySymbols[0] = "CAD";
currencyCountries[0] = "Canadian Dollars";
currencyExchangeRates[0] = 1.4243;
currencyCodes[1] = "840";
currencySymbols[1] = "USD";
currencyCountries[1] = "US Dollars";
currencyExchangeRates[1] = 1.2703;
// Function to correct for 2.x Mac date bug. Call this function to
// fix a date object prior to passing it to SetCookie.
// IMPORTANT: This function should only be called *once* for
// any given date object! See example at the end of this document.
function FixCookieDate (date)
{
var base = new Date(0);
var skew = base.getTime(); // dawn of (Unix) time - should be 0
if (skew > 0) // Except on the Mac - ahead of its time
date.setTime (date.getTime() - skew);
}
// This is used by SetCookie()
var expdate = new Date ();
FixCookieDate (expdate); // Correct for Mac date bug - call only once for given Date object!
expdate.setTime (expdate.getTime() + (183 * 24 * 60 * 60 * 1000)); // 1/2 year from now
function getCookieVal (offset)
{
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return document.cookie.substring(offset, endstr);
}
function GetCookie (name)
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (clen>i)
{
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return "";
}
// will set the expire date to expdate by default
function SetCookie (name,value,expires,path,domain,secure)
{
document.cookie = name + "=" + escape (value) +
((expires) ? "; expires=" + expires.toGMTString() : "; expires=" + expdate.toGMTString()) +
((path) ? "; path=" + path : '; path=/') +
((domain) ? "; domain=" + domain : '') +
((secure) ? "; secure" : '');
}
function getListValue(list)
{
var listValue = "";
if ( list.selectedIndex != -1 )
{
listValue = list.options[ list.selectedIndex ].value;
}
return( listValue );
}
// returns index to the currency, returns -1 if not found
function findCurrency(currency)
{
for (var i=0; maxCurrency>i; i++)
{
if (currency==currencyCodes[i])
return i;
}
if (i>=maxCurrency)
return -1;
}
// returns Currency Country based on Code
// returns "**Currency Code Not Found**" if code is invalid
function getCurrencyCountry(code)
{
var cIndex=findCurrency(code);
if (cIndex==-1)
return "**Currency Code Not Found**";
return currencyCountries[cIndex];
}
// returns Currency Symbol based on Code
// returns "**Currency Code Not Found**" if code is invalid
function getCurrencySymbol(code)
{
var cIndex=findCurrency(code);
if (cIndex==-1)
return "**Currency Code Not Found**";
return currencySymbols[cIndex];
}
function fmtPriceWithCommas(value)
{
var re = /(-?\d+)(\d{3})/;
var num = "";
amount = Math.round(value*Math.pow(10,2))/Math.pow(10,2);
amount -= 0;
num += (amount == Math.floor(amount)) ? amount + '.00' : ( (amount*10 == Math.floor(amount*10)) ? amount + '0' : amount);
while (re.test(num))
{
num = num.replace(re,"$1,$2");
}
return num;
}
// returns converted currency amount
// returns -999 if currency not found.
function getPrice(currency, amount)
{
var cIndex=findCurrency(currency);
if (cIndex==-1)
return -999;
var converted = amount * currencyExchangeRates[cIndex];
return fmtPriceWithCommas(converted);
}
function updateCurrency(currencyCode)
{
SetCookie("DispCurr", currencyCode);
// forces reloading of page
history.go(0);
}
// defines current currency code by reading cookie
var currentCurrencyCode=GetCookie("DispCurr");
if (findCurrency(currentCurrencyCode)==-1)
{
currentCurrencyCode="";
SetCookie("DispCurr", currentCurrencyCode);
}
// Open up the window to display approximate price idea
function popUpApproxPriceWindow()
{
var iWidth;
var iHeight;
iWidth = (window.screen.width/2) - 140;
iHeight = (window.screen.height/2) - 80;
var win2 = window.open("","Window2","height=250,width=300,resizable=no,left=" + iWidth + ",top=" + iHeight + ",screenX=" + iWidth + ",screenY=" + iHeight + ",scrollbars=yes");
win2.focus();
win2.location.href = 'approxprice.htm'
}
// -->
</script>
<meta name="Microsoft Border" content="tlrb, default">
</head>
<body bgcolor="ff0000" text="ffffff" topmargin="0" leftmargin="0" margintop="0" marginwidth="0" link="990000" vlink="400080" alink="cc9999"><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td>
<p align="center"><font size="6"><strong>
</strong></font><br>
</p>
<p align="center"> </p>
</td></tr><!--msnavigation--></table><!--msnavigation--><table dir="ltr" border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td valign="top" width="1%">
</td><td valign="top" width="24"></td><!--msnavigation--><td valign="top">
<FORM style="border: 1px dotted red; padding: 2px" name="generalInquiryForm" method="post" action="http://order.ecplace.com/emgr_cgibin/maemgrorder.exe">
<INPUT TYPE="HIDDEN" NAME="SiteLocale_Language" VALUE="en"><INPUT TYPE="HIDDEN" NAME="Merchant_ReturnTo_URL" VALUE=""><INPUT TYPE="HIDDEN" NAME="PGI_SchemaVersion" VALUE="1.0"><INPUT TYPE="HIDDEN" NAME="Ecom_SchemaVersion" VALUE="http://www.ecml.org/version/1.0"><INPUT TYPE="HIDDEN" NAME="AppVersion" VALUE="6.0.1.906"><INPUT TYPE="HIDDEN" NAME="PartnerID" VALUE=""><INPUT TYPE="HIDDEN" NAME="PackID" VALUE="2078"><INPUT TYPE="HIDDEN" NAME="Style" VALUE="Verdana,ff0000,e4b649,ffffff,808080,990000,cc9999,400080,000000,3399cc,000000,6699cc,ff9900,000000,000000,000000,ccffff"><INPUT TYPE="HIDDEN" NAME="Order_Currency" VALUE="EURO"><INPUT TYPE="HIDDEN" NAME="Order_CurrencyCode" VALUE="954"><INPUT TYPE="HIDDEN" NAME="Merchant_CompanyName" VALUE="Tecnoprint%20printing%20solutions"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_Street_Line1" VALUE="Via%20Fiume%20Montone%20Abb.%20279/A"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_Street_Line2" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_City" VALUE="Ravenna"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_StateProv" VALUE="RA"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_CountryName" VALUE="Italy"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_CountryCode" VALUE="00"><INPUT TYPE="HIDDEN" NAME="Merchant_Postal_PostalCode" VALUE="48100"><INPUT TYPE="HIDDEN" NAME="Merchant_Telecom_Phone_Number" VALUE="%2B390544051030"><INPUT TYPE="HIDDEN" NAME="Merchant_Telecom_Fax_Number" VALUE="%2B390544406952"><INPUT TYPE="HIDDEN" NAME="OnlineOrder" VALUE=""><INPUT TYPE="HIDDEN" NAME="paymentmethod" VALUE=""><INPUT TYPE="HIDDEN" NAME="TaxType1" VALUE="Iva"><INPUT TYPE="HIDDEN" NAME="TaxSelectedByDefault1" VALUE="yes"><INPUT TYPE="HIDDEN" NAME="TaxDescript1" VALUE="Italy%20residents"><INPUT TYPE="HIDDEN" NAME="TaxRate1" VALUE="20.000"><INPUT TYPE="HIDDEN" NAME="ShippingCalculation" VALUE="Base Plus By Weight"><INPUT TYPE="HIDDEN" NAME="ShippingTaxable" VALUE="1"><input type="hidden" name="UDFName1" value="Come sei venuto a conoscenza di Tecnoprint?"><input type="hidden" name="UDFType1" value="Text"><input type="hidden" name="UDFMandatory1" value="Yes"><input type="hidden" name="UDFName2" value=""><input type="hidden" name="UDFType2" value=""><input type="hidden" name="UDFMandatory2" value=""><input type="hidden" name="UDFName3" value=""><input type="hidden" name="UDFType3" value=""><input type="hidden" name="UDFMandatory3" value=""><input type="hidden" name="UDFName4" value=""><input type="hidden" name="UDFType4" value=""><input type="hidden" name="UDFMandatory4" value=""><input type="hidden" name="UDFName5" value=""><input type="hidden" name="UDFType5" value=""><input type="hidden" name="UDFMandatory5" value=""><input type="hidden" name="UDFName6" value=""><input type="hidden" name="UDFType6" value=""><input type="hidden" name="UDFMandatory6" value=""><INPUT TYPE="HIDDEN" NAME="CardsAccepted" VALUE=""><INPUT TYPE="HIDDEN" NAME="CertificateFilename" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorID" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorProfileID" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorLogoURL" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorParameters" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorTestMode" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorTestURL" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_ProcessorTestLogoURL" VALUE=""><INPUT TYPE="HIDDEN" NAME="Merchant_MPSN" VALUE="CCC3CA37ACEE3BB535B8F664A1F33CB3-D45B3170FDD8DF9DD4F5D93417921293CF622FF3EF0AE89A2046E6026012656FA80D26E5A0101C975A0D8F6C1B81B26DB03D1D16EB0D3EBE6949CB39319BF03D9A45DA78669EAC19CDB3D9C02402B7AB651F727900952CF02391747C4DFC31F547663AA63CAA2D41E24522647BC08733EB4E1A62B2FD950E615C1F46824AB25984DC83236F20655AF0CA9A441FB0F56507A43A959BFCAE39E9B7FE7C2B0F3659068347166FD0719B7A904BA7848C18E6FAF23B0F4CCB4EACB30F619EF575716D515D72411ADFBD3DF21C48FEAD72EC3ED046748CE7EC8904A28C352F2263CE64DBC1E93510BC76BECD9659737A9DB2B45E30E74DF7A4891269AD87029A6B71A02042BE4A92B21D50162D6A39874215D123430BB30082ADCE1CCECF590CC612DC83647DEDF81D74B8E9B467BEE9022C645B5F6E0802AA415BE34DB548CFE9524D5C3632E61A696D97833FD8CBAC2352E02B1F5BBBCA9AA01C0A26736ADF6AC97D14C146E938BFBCD3DA4611C196AA50C046C63F501F7487086AD36F08B4CBD4E96C763B9F04942867B5D1ECDB0FDB18B4101D891AEC958549CF75A7929A5923BC3AF5390E9F5BBDE8CF46009201C5321436F56B0231D993180935E7EFE5DFDFA1E0636595572E40A1D7E7C9C9445AF5DEAE34FBF775665DF5599EAD9DF5811902E24B61417571DCEB026AA639E2FB9992CBA8F2C8B2CB389DC64162E7F3812B02"><INPUT TYPE="HIDDEN" NAME="Merchant_EPSN" VALUE="B48FF109D818ADE50466570DAE52F14F-D45B3170FDD8DF9DD4F5D93417921293CF622FF3EF0AE89A2046E6026012656FA80D26E5A0101C975A0D8F6C1B81B26DB03D1D16EB0D3EBE6949CB39319BF03D9A45DA78669EAC19CDB3D9C02402B7AB651F727900952CF02391747C4DFC31F547663AA63CAA2D41E24522647BC08733EB4E1A62B2FD950E615C1F46824AB25984DC83236F20655AF0CA9A441FB0F56507A43A959BFCAE39E9B7FE7C2B0F3659068347166FD0719B7A904BA7848C18E6FAF23B0F4CCB4EACB30F619EF575716D515D72411ADFBD3DF21C48FEAD72EC3ED046748CE7EC8904A28C352F2263CE64DBC1E93510BC76BECD9659737A9DB2B45E30E74DF7A4891269AD87029A6B71A0E33D26CC767E2378DA571C69C2A5F4C4B38C846C1BDE7F876A8D86933154CCF38322E5F5813D8EE9C1C498902E45A76ACE74E93B400B2A4842DCC3D8278D592DB7F0A8DCB69B0248AB4DC977DE1E3BD175B902935E3FDC3BBC541876ED7FA03A018091BC5BA69CCD2EF693159F514E127183A72E0E56E0D6FA4D0B4535166FB301DB867E3FC7B2C7A82EC1E9BF88CBFE295D12475D70C186CB056F23B7DAAFAFB1071A1F3E032B041B1553ACD2E21F3535F1A2B4D9C94BE8958F591C8945A759096828D2C6795C503F28324B14D7E6816FAB0DADE279AF4BC4D97E38F241FB091D3A6DBC831313877EA75C10820329835C518FF310342F3E1552E6C9B9EAF5BC"><input type="HIDDEN" name="FileID" value="entrance"><input type="HIDDEN" name="MessageType" value="inqiury"><input type="HIDDEN" name="Merchant_Online_Email" value="">
</form>
<center>
<table width="680" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center">
<table width="80%" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><img border="0" src="usrimage/img_layout1.jpg" width="300" height="50"></td>
</tr>
</table>
<p></p>
</td>
</tr>
</table>
<table width="936" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<!--navigation links-->
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td align="right"><img src="images/4-01-03.jpg" border="0" height="12" width="64"></td><td colspan="3"><img src="images/1-13-01.gif" width="2" height="1" border="0"></td>
</tr>
<tr>
<td align="right" bgcolor="#000033"><img SRC="images/4-02-01.jpg" border="0" height="33" width="39"><img src="images/4-02-02.jpg" border="0" height="33" width="5"><img src="images/4-02-03.jpg" border="0" height="33" width="64"></td><td bgcolor="#000033"> </td><td width="450" colspan="2" rowspan="2" bgcolor="#000033" class="pagetitle">
</td>
</tr>
<tr>
<td align="right"><img src="images/4-03-01.jpg" border="0" height="8" width="39"><img src="images/4-03-02.jpg" border="0" height="8" width="5"><img src="images/4-03-03.jpg" border="0" height="8" width="64"></td><td><img src="images/1-13-01.gif" width="1" height="1" border="0"></td>
</tr>
<tr>
<td align="right"><img src="images/4-04-01.jpg" border="0" height="12" width="39"><img src="images/4-04-02.jpg" border="0" height="12" width="5"><img src="images/4-04-03.jpg" border="0" height="12" width="64"></td><td width="36"><img src="images/4-04-04.jpg" border="0" height="12" width="11"><img src="images/4-04-05.jpg" border="0" height="12" width="25"></td><td colspan="2" rowspan="3">
<!--navigation links-->
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td align="center" valign="top"><font class="nav"><a href="index.htm">Home</a></font></td><td align="center" valign="top"><font class="nav"><a href="content.htm">About Us</a></font></td><td align="center" valign="top"><font class="nav"><a href="catalog.htm">Catalog</a></font></td><td align="center" valign="top"><font class="nav"><a href="contact.htm">Contact Info</a></font></td><td align="center" valign="top"><font class="nav"><a href="javascript:document.forms.generalInquiryForm.submit()">Inquire</a></font></td><td align="center" valign="top"><font class="nav"><a href="basket.htm">Shopping Basket</a></font></td><td align="center" valign="top"><font class="nav"><a href="policy.htm">Policies/Statements</a></font></td><td align="center" valign="top"><font class="nav"><a href="link.htm">Web Links</a></font></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right"><img src="images/4-05-01.jpg" border="0" height="23" width="39"><img src="images/4-05-02.jpg" border="0" height="23" width="5"><img src="images/4-05-03.jpg" border="0" height="23" width="64"></td><td><img src="images/4-05-04.jpg" border="0" height="23" width="11"></td>
</tr>
<tr>
<td align="right"><img src="images/4-06-02.jpg" border="0" height="11" width="5"><img src="images/4-06-03.jpg" border="0" height="11" width="64"></td><td><img src="images/4-06-04.jpg" border="0" height="11" width="11"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="right"><font class="small"><b>
<FORM style="border: 1px dotted red; padding: 2px" name="currencyForm">
<font face="Verdana" size="2" color="808080">View <a href="javascript:void(0);" onclick="popUpApproxPriceWindow();">Estimated Equivalent Price:</a> in :
</font>
<script language="javascript">
document.write ( '<select name="selectCurrency" onchange="updateCurrency(getListValue(selectCurrency))">' );
if (findCurrency(currentCurrencyCode)==-1)
document.write ( '<option value="" selected>Select Currency</option>');
else
document.write ( '<option value="">Select Currency</option>');
for (var i=0; i <maxCurrency; i++)
{
document.write ( '<option value="', currencyCodes[i], '"');
if (currencyCodes[i] == currentCurrencyCode)
document.write ( ' selected');
document.write ( ' > ', currencyCountries[i], ' </option>');
}
document.write ('</select>');
</script>
</form>
</b></font></td>
</tr>
<tr>
<td align="center">
<!--Content starts here-->
<table width="90%" cellspacing="0" cellpadding="4" border="0">
<tr>
<td valign="top"></td>
<td width="350" valign="top"><img src="usrimage/logoarmorbiang2.gif" alt="ARMOR - Master in Art of Print Technology" width="350" height="65"></td>
</tr>
<tr>
<td colspan="2" valign="top"><font class="title">ARMOR - Master in Art of Print Technology</font><font class="normaltext"></font>
<br>
<font class="normaltext" size="1">Consumables for inkjet, laser, fax and impact printer. </font>
<p><font class="normaltext" size="1"><b>Gamma prodott</b>i </font></p>
<p><font class="normaltext" size="1">• Laser </font><font class="normaltext" size="1">pulizia, nitidezza, precisione di stampa, affinché ogni stampante dia il meglio di sé. La cartuccia Armor, testata individualmente, impiega polveri di toner specifiche, nere o a colori, per fornire prestazioni ottimali in termini di definizione, durata, velocità... • Ink-jet Ci impegniamo in ogni fase della lavorazione per offrirvi finezza e precisione di stampa assolute. Le cartucce Armor con chip comunicano col vostro PC, permettendovi di conoscere in ogni momento il livello d'inchiostro restante. </font></p>
<p><font class="normaltext" size="1">• TTR Fax Nastri a trasferimento termico compatibili al 100% con il vostro fax: qualità di stampa perfetta ed un notevole risparmio. Ecco i vantaggi offerti dal marchio Armor, che mette a vostra disposizione la sua leadership europea nella tecnologia del trasferimento termico. </font></p>
<p><font class="normaltext" size="1">• Impatto Tutti i nastri e le cassette per qualsiasi esigenza di stampa ad impatto: macchine da scrivere, stampanti, terminali pos, bancomat, registratori di cassa, calcolatrici… sempre con la stessa qualità e la stessa precisione di funzionamento.</font></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="4" border="0">
<tr>
<td valign="top"><a href="cat10_1.htm"><img width="48" border="0" src="usrimage/v_01.jpg" alt="InkJet"></a><font class="subtitle" size="2"><a href="cat10_1.htm"><b>InkJet</b></a></font><font size="2"><br>
</font></td>
<td valign="top"><a href="cat17_1.htm"><img width="78" border="0" src="usrimage/2ansgarantie_1.jpg" alt="Impatto"></a><font class="subtitle" size="2"><a href="cat17_1.htm"><b>Impatto</b></a></font><font size="2"><br>
</font></td>
<td valign="top">
<div align="right">
<a href="cat16_1.htm"><img width="77" border="0" src="usrimage/t20997.jpg" alt="Nastri TTR per fax"></a><font class="subtitle" size="2"><a href="cat16_1.htm"><b>Nastri TTR per fax</b></a></font><font size="2"><br>
</font></div>
</td><td valign="top" width="161"><a href="cat9_1.htm"><img width="100" border="0" src="usrimage/newpacklaser.jpg" alt="Toner "></a><font class="subtitle" size="2"><a href="cat9_1.htm"><b>Toner </b></a></font><font size="2"><br>
</font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<!--navigation links-->
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td align="center" valign="top"><font class="nav"><a href="index.htm">Home</a></font></td><td align="center" valign="top"><font class="nav"><a href="content.htm">About Us</a></font></td><td align="center" valign="top"><font class="nav"><a href="catalog.htm">Catalog</a></font></td><td align="center" valign="top"><font class="nav"><a href="contact.htm">Contact Info</a></font></td><td align="center" valign="top"><font class="nav"><a href="javascript:document.forms.generalInquiryForm.submit()">Inquire</a></font></td><td align="center" valign="top"><font class="nav"><a href="basket.htm">Shopping Basket</a></font></td><td align="center" valign="top"><font class="nav"><a href="policy.htm">Policies/Statements</a></font></td><td align="center" valign="top"><font class="nav"><a href="link.htm">Web Links</a></font></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><a href="
</tr>
</table>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><font class="small" color="808080"><b>Tecnoprint printing solutions</b></font>
<br>
<font class="small" color="808080">Via G. Santucci, 54,
Ravenna,
RA,
48100
Italy<br>Tel: +390544051030
Fax: +390544051031<br>
</font></td>
</tr>
</table>
<p></p>
<table width="80%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td align="center"><a href="http://www.ecbuilder.com/client/logolink60"><img src="images/download.gif" border="0" width="92" height="36"></a></td>
</tr>
</table>
<p></p>
</td>
</tr>
</table>
</center>
<!--msnavigation--></td><td valign="top" width="24"></td><td valign="top" width="1%"></td></tr><!--msnavigation--></table><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td>
</td></tr><!--msnavigation--></table></body>
</html>