//
// RORUM, 04JAN2004
// This JS include goes after the HTML <HEAD>; 
// it defines the top IMAGE and the LINKS at the top of each page.
// 

// Write the header image:
document.writeln ( '<A NAME="StartOfPage"></A>' );
document.writeln ( '<DIV ALIGN="center">' );
if ( myPRINTABLE )
{document.writeln( '<IMG SRC="images/p_header.gif" WIDTH="633"  HEIGHT="111">' );
} else {
 document.writeln( '<IMG SRC="images/b_header_a.gif" WIDTH="758"  HEIGHT="179">' );
}
document.writeln ( '</DIV>' );

// Write the header links:
if ( myPRINTABLE ) 	// Defined in 'java_head.js'
{
var myLINKS1 = 'Web page: &nbsp; "' + myURLVALUE + '"' ;
var myLINKS2 = '<BR> \
	<A HREF="#" onclick="self.print();" >Print</A> &nbsp; &nbsp; \
	<A HREF="#" onclick="self.close();" >Close</A> ';

} else {
var myLINKS1 = ' \
	<A HREF="b_photos1.htm">	Photos			</A>&nbsp;&nbsp; 	\
	<A HREF="b_setting.htm">	Setting Techniques 	</A>&nbsp;&nbsp; 	\
	<A HREF="b_prices.htm">		Descriptions and Pricing</A>&nbsp;&nbsp;	\
	<A HREF="b_history.htm">	History 		</A>&nbsp;&nbsp;	\
	<A HREF="b_materials.htm">	Materials 		</A>			\
<BR>	<A HREF="b_epoxy.htm">		Epoxy Tips		</A>&nbsp;&nbsp;	\
	<A HREF="b_caps.htm">		Briolette Caps 		</A>&nbsp;&nbsp; 	\
	<A HREF="b_jewelry1.htm">	Jewelry Photos 		</A>&nbsp;&nbsp;	\
	<A HREF="b_strength.htm">	Strength Tests 		</A>&nbsp;&nbsp; 	\
	<A HREF="b_articles.htm">	Articles 		</A>			\
<BR> 	<A HREF="b_ultrasonic.htm">	Ultrasonic Drilling Service </A>&nbsp;&nbsp;	\
	<A HREF="b_links.htm">		Links 			</A>&nbsp;&nbsp;	\
	<A HREF="b_contacts.htm">	Contact Us 		</A>&nbsp;&nbsp; 	\
	<A HREF="index.htm">		Home 			</A> 			\
<BR>	<A HREF="http://briolettes2.blogspot.com">Briolettes For Sale</A> &nbsp;&nbsp; \
';
var myLINKS2 = '<A HREF="#" onClick=\'myWinPopup(myURLVALUE,"printable","");\'\
	>Printable Page</A>';
}
document.writeln ( '<DIV CLASS="links1">' );
document.writeln ( myLINKS1 + myLINKS2 );
document.writeln ( '</DIV>' );
document.writeln ( '<BR>' );
// EOF 

