function DrawLine()
{
for(x=0;x<70;x++)
	{
	document.write('-');
	}
}

function WriteHeader( arg )
{
// arg==0 underline
// arg==1 overline
document.write('<p class="headerA" align="center">')
if( arg==1 )
	{
	DrawLine()
	document.write('<br>')
	}
document.write('<a href="xeto.html">фотографии</a>&nbsp;+&nbsp;')
document.write('<a href="info.html">инфо</a>&nbsp;+&nbsp;')
document.write('<a href="misc.html">разное</a>&nbsp;&divide;&nbsp;')
document.write('<a href="xeto.html">gallery</a>&nbsp;+&nbsp;')
document.write('<a href="info.html">about</a>&nbsp;+&nbsp;')
document.write('<a href="misc.html">misc</a>')
if( arg==0 )
	{
	document.write('<br>')
	DrawLine()
	}
document.write('</p>')
}
