/*********************************************/
/**********  Ananas Boutique  ****************/
/*********************************************/

function ShowStandardPage( cFunc, cStyle ) {
   document.write( '<table class="' + cStyle +'" align="center" cellspacing="0" cellpadding="0">' );
   document.write( '<tr><td class="CompanyTitle" colspan="3">' );
   document.write( '<div class="CompanyTitle">' + Site.Company + '</div>' ); 
   document.write( '</td></tr>' );
   document.write( '<tr><td class="MenuBar" colspan="3">' );
   ShowMenuBar()
   document.write( '</td></tr>' );
   document.write( '<tr height="100%"><td width="70px"><img src="./images/blank.gif" /></td>' );
   document.write( '<td valign="top" align="center">' );
   eval( cFunc );
   document.write( '   </td><td width="70px"><img src="./images/blank.gif" /></td></tr>' );
   document.write( '<tr><td colspan="3" height="50px">&nbsp;</td></td>' );
   document.write( '<tr><td colspan="3" height="8px">' );
   ShowCopyright();   
   document.write( '</td></tr>' );
   document.write( '</table>' );

   document.write( '<table align="center" cellspacing="0" cellpadding="0">' );
   document.write( '<tr><td colspan="3" height="10px" align="center">' )
   document.write( '<div class="moto">' );
   document.write( Site.Moto );
   document.write( '</div>' );
   document.write( '</td></tr>' );
   document.write( '</table>' );
    
}

function ShowWelcomeMatText() { document.write( Site.Welcome );  }

function ShowCopyright() {document.write('<div class="Copyright">'+CopyrightText+'</div>');}

function ZeroFill( n ) {
   var a = "";
   if (n < 10) { a = "0"; }
   return (a + n);
}

function ShowTableSeperator(cHeight,cCols) {  
   document.write( '<tr><td height="' + cHeight + '" colspan="' + cCols +'">' );
   document.write( '<img src="images/blank.gif" height="' + cHeight + '" width="1" border="0">' );
   document.write( '</td></tr>' ); 
}

function OrderFormPopUp() { 
   window.open( "ab_order_form.htm", "OrderForm", 
                "history=no,toolbar=no,location=no, border=0,directories=no,status=no,"+
                "menubar=no,scrollbars=no,resizable=no,width=700,height=500");
}

/************************************************/
/****************     End of File   *************/
/************************************************/
