<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin 

{
<!-- just to make it easier...always keep this Array an even amount or the last instance as an odd number-->
 var Plist = new Array()

 Plist[0] =  'Wallets (8)     $14.95    '  
 Plist[1] =  'Wallets (48)    $59.95    '  
 Plist[2] =  '4x6(4x5)(3.5x5) $10.95    '  
 Plist[3] =  '5x5             $10.95    '  
 Plist[4] =  '5x7             $15.95    '  
 Plist[5] =  '8x8             $24.95    '  
 Plist[6] =  '8x10            $24.95    '  
 Plist[7] =  '8x12            $24.95    '  
 Plist[8] =  '10x10           $29.95    '  
 Plist[9] =  '10x13           $59.95    '  
 Plist[10] = '11x14           $69.95    '  
 Plist[11] = '10x20           $89.95    '  
 Plist[12] = '16x20          $129.95    '  
 Plist[13] = '20x24          $199.95    '  
 Plist[14] = '20x30          $229.95    '  
 Plist[15] = '                          ' 
document.write('<center>');  
<!-- document.write('<P><IMG SRC="/cards_color.jpg" height=50 ><p>'); -->

document.write('<h2>A-la-cart Print Prices</h2>'); 
document.write('<table border=1 cellspacing=0 cellpadding=0>');  

var l1=(Plist.length/2);
var l2=(Plist.length-l1);


 for (var i=0; i<l1; i++)
  {
 document.write('<tr>');   
 document.write("<td width=144 valign=top align=center>");  
 document.write((Plist[i]).substring(0, 15));
 document.write('</td>');  
 document.write('<td width=72 valign=top align=right >');   
 document.write((Plist[i]).substring(15, 22));
 document.write('</td>'); 

 document.write("<td width=144 valign=top align=center>");  
 document.write((Plist[i + l1]).substring(0, 15));
 document.write('</td>');  
 document.write('<td width=72 valign=top align=right >');   
 document.write((Plist[i+l1]).substring(15, 22));
 document.write('</td>'); 
 document.write('</tr>');   
  }    
document.write('</table>'); 
document.write('</center>');  
}
// End -->

