function print_prevnext( width, prevpage, nextpage )
{
    
    document.write( "<table bgcolor='black' align='center' border='0' cellpadding='0' cellspacing='0' width='" + width + "' style='font-size: 0;'>" );
    document.write( "<tr>" );    
    
    if( prevpage == "" )
	{
	    document.write( "<td align='left'>" );
	    document.write( "	<img src='img/buttons/no_arrow.png' border='0'> ");
	    document.write( "</td>" );  
	}
    else 
	{	    
	    document.write( "<td align='left'>" );
	    document.write( "  <a href='" + prevpage + "' ");
	    document.write( "	 onmouseover=\"changeImages( 'prev', 'img/buttons/prev_over.png'); return true;\" " );
	    document.write( "	 onmouseout= \"changeImages( 'prev', 'img/buttons/prev_normal.png'); return true;\" " );
	    document.write( "	 onmousedown=\"changeImages( 'prev', 'img/buttons/prev_over.png'); return true;\" " );
	    document.write( "	 onmouseup=  \"changeImages( 'prev', 'img/buttons/prev_normal.png'); return true;\"> " );
	    document.write( "	<img name='prev' src='img/buttons/prev_normal.png' border='0'> ");
	    document.write( "  </a> ");
	    document.write( "</td>" );    
	}

    if( width > 600 )
	{
	    document.write( "<td align='center'>" );
	    document.write( "  <a href='http://vmuriel.tumblr.com' target='_blank'");
	    document.write( "	 onmouseover=\"changeImages( 'archive', 'img/buttons/archive_over.png'); return true;\" " );
	    document.write( "	 onmouseout= \"changeImages( 'archive', 'img/buttons/archive_normal.png'); return true;\" " );
	    document.write( "	 onmousedown=\"changeImages( 'archive', 'img/buttons/archive_over.png'); return true;\" " );
	    document.write( "	 onmouseup=  \"changeImages( 'archive', 'img/buttons/archive_normal.png'); return true;\"> " );
	    document.write( "	<img name='archive' src='img/buttons/archive_normal.png' border='0'> ");
	    document.write( "  </a> ");
	    document.write( "</td>" );
	}


    if( nextpage == "" )
	{
	    document.write( "<td align='right'>" );
	    document.write( "	<img src='img/buttons/no_arrow.png' border='0'> ");
	    document.write( "</td>" );  
	} 
    else 
	{
	    document.write( "<td align='right'>");
	    document.write( "  <a href='" + nextpage + "'");
	    document.write( "	 onmouseover=\"changeImages( 'next', 'img/buttons/next_over.png'); return true;\"");
	    document.write( "	 onmouseout= \"changeImages( 'next', 'img/buttons/next_normal.png'); return true;\"");
	    document.write( "	 onmousedown=\"changeImages( 'next', 'img/buttons/next_over.png'); return true;\"");
	    document.write( "	 onmouseup=  \"changeImages( 'next', 'img/buttons/next_normal.png'); return true;\">");
	    document.write( "	<img name='next' src='img/buttons/next_normal.png' border='0'>");
	    document.write( "  </a>");
	    document.write( "</td>");     
	} 
    
    document.write( " </tr> ");
    document.write( "</table> ");

}


function print_menu( width )
{
    
    document.write( "<table bgcolor='black' align='center' border='0' cellpadding='0' cellspacing='0' width='" + width + "' style='font-size: 0;'>" );
    document.write( "<tr>" );

    document.write( "<td align='center'>");
    document.write( "  <a href='index.html'");
    document.write( "	 onmouseover=\"changeImages( 'home', 'img/buttons/home_over.png'); return true;\" ");
    document.write( "	 onmouseout= \"changeImages( 'home', 'img/buttons/home_normal.png'); return true;\" ");
    document.write( "	 onmousedown=\"changeImages( 'home', 'img/buttons/home_over.png'); return true;\" ");
    document.write( "	 onmouseup=  \"changeImages( 'home', 'img/buttons/home_normal.png'); return true;\">");
    document.write( "	<img name='home' src='img/buttons/home_normal.png' border='0'>");
    document.write( "  </a>");
    document.write( "</td>"); 
  

    document.write( "<td align='center'>");
    document.write( "  <a href='page_design.html'");
    document.write( "	 onmouseover=\"changeImages( 'design', 'img/buttons/design_over.png'); return true;\"");
    document.write( "	 onmouseout= \"changeImages( 'design', 'img/buttons/design_normal.png'); return true;\"");
    document.write( "	 onmousedown=\"changeImages( 'design', 'img/buttons/design_over.png'); return true;\"");
    document.write( "	 onmouseup=  \"changeImages( 'design', 'img/buttons/design_normal.png'); return true;\">");
    document.write( "	<img name='design' src='img/buttons/design_normal.png' border='0'>");
    document.write( "  </a>");
    document.write( "</td>");    
    
    if( width > 600 )
	{

	    document.write( "<td align='center'>");
	    document.write( "  <a href='page_awards.html'");
	    document.write( "	 onmouseover=\"changeImages( 'awards', 'img/buttons/awards_over.png'); return true;\"");
	    document.write( "	 onmouseout= \"changeImages( 'awards', 'img/buttons/awards_normal.png'); return true;\"");
	    document.write( "	 onmousedown=\"changeImages( 'awards', 'img/buttons/awards_over.png'); return true;\"");
	    document.write( "	 onmouseup=  \"changeImages( 'awards', 'img/buttons/awards_normal.png'); return true;\">");
	    document.write( "	<img name='awards' src='img/buttons/awards_normal.png' border='0'>");
	    document.write( "  </a>");
	    document.write( "</td>");        

	    document.write( "<td align='center'>");
	    document.write( "  <a href='page_links.html'");
	    document.write( "	 onmouseover=\"changeImages( 'links', 'img/buttons/links_over.png'); return true;\"");
	    document.write( "	 onmouseout= \"changeImages( 'links', 'img/buttons/links_normal.png'); return true;\"");
	    document.write( "	 onmousedown=\"changeImages( 'links', 'img/buttons/links_over.png'); return true;\"");
	    document.write( "	 onmouseup=  \"changeImages( 'links', 'img/buttons/links_normal.png'); return true;\">");
	    document.write( "	<img name='links' src='img/buttons/links_normal.png' border='0'>");
	    document.write( "  </a>");
	    document.write( "</td>");
	    
	    document.write( "<td align='center'>");
	    document.write( "  <a href='page_photo.html'");
	    document.write( "	 onmouseover=\"changeImages( 'holidays', 'img/buttons/holidays_over.png'); return true;\"");
	    document.write( "	 onmouseout= \"changeImages( 'holidays', 'img/buttons/holidays_normal.png'); return true;\"");
	    document.write( "	 onmousedown=\"changeImages( 'holidays', 'img/buttons/holidays_over.png'); return true;\"");
	    document.write( "	 onmouseup=  \"changeImages( 'holidays', 'img/buttons/holidays_normal.png'); return true;\">");
	    document.write( "	<img name='holidays' src='img/buttons/holidays_normal.png' border='0'>");
	    document.write( "  </a>");
	    document.write( "</td>");	

	}

    document.write( "<td align='center'>");
    document.write( "  <a href='page_about.html'");
    document.write( "	 onmouseover=\"changeImages( 'about', 'img/buttons/about_over.png'); return true;\"");
    document.write( "	 onmouseout= \"changeImages( 'about', 'img/buttons/about_normal.png'); return true;\"");
    document.write( "	 onmousedown=\"changeImages( 'about', 'img/buttons/about_over.png'); return true;\"");
    document.write( "	 onmouseup=  \"changeImages( 'about', 'img/buttons/about_normal.png'); return true;\">");
    document.write( "	<img name='about' src='img/buttons/about_normal.png' border='0'>");
    document.write( "  </a>");
    document.write( "</td>");          

    document.write( "<td align='center'>");
    document.write( "  <a href='mailto:vmuriel@gmail.com'");
    document.write( "	 onmouseover=\"changeImages( 'contact', 'img/buttons/contact_over.png'); return true;\"");
    document.write( "	 onmouseout= \"changeImages( 'contact', 'img/buttons/contact_normal.png'); return true;\"");
    document.write( "	 onmousedown=\"changeImages( 'contact', 'img/buttons/contact_over.png'); return true;\"");
    document.write( "	 onmouseup=  \"changeImages( 'contact', 'img/buttons/contact_normal.png'); return true;\">");
    document.write( "	<img name='contact' src='img/buttons/contact_normal.png' border='0'>");
    document.write( "  </a>");
    document.write( "</td>");

    document.write( "<td align='center'>");
    document.write( "<a type='application/rss+xml' href='http://vito.lucuslegion.com/feed.rss'" );
    document.write( "	 onmouseover=\"changeImages( 'rss', 'img/buttons/rss_over.png'); return true;\"");
    document.write( "	 onmouseout= \"changeImages( 'rss', 'img/buttons/rss_normal.png'); return true;\"");
    document.write( "	 onmousedown=\"changeImages( 'rss', 'img/buttons/rss_over.png'); return true;\"");
    document.write( "	 onmouseup=  \"changeImages( 'rss', 'img/buttons/rss_normal.png'); return true;\">");
    document.write( "	<img name='rss' src='img/buttons/rss_normal.png' border='0'>");
    document.write( "  </a>");
    document.write( "</td>");
    
    document.write( " </tr> ");
    document.write( "</table> ");
    
}



function print_colorindex( bgcolor, bgcolor2, width )
{
 
    document.write( "<table bgcolor='" + bgcolor + "' align='center' border=0 width='" + width + "' style='font-size: 70%;' height=18 >" );

    document.write( "<tr>" );    
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#ddddf5'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_mayacaustics.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#5cbe4f'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_dynrope.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#e2a54c'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fluidbol.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#d7bc85'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_tracking_table.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#fd0003'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_pocoyo.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#ebebeb'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fractals.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#c3540f'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_sohoprimate.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#484850'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_houdinishaders_cloth.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#745c3c'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_houdinishaders_cloth_02.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#c47f31'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_indigo_dices.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#65325b'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_test_fluidize.html';\"></td>  " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#c9ff23'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_love_vimeo.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#dc4500'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_streamers.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#ff841a'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_bloodyvimeo.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#aa752a'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fball.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#686962'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fluidcrossfire.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#67a9e3'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fluidcrossfire_02.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#8b9686'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_stuttgart.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#a46d45'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_opening.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#c36200'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_fritzsss.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#AAAAAA'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_viney.html';\"></td> " );
    document.write( "<td width=18 bgcolor="+ bgcolor2 +" onMouseover=\"this.bgColor='#695807'\" onMouseout=\"this.bgColor='"+bgcolor2+"'\" onClick=\"top.location='post_vwpolo.html';\"></td> " );
    document.write( "</tr>" );

    document.write( "</table>" );

}


function print_copyright( bgcolor, width )
{
    
    document.write( "<table bgcolor='" + bgcolor + "' align='center' border='0' width='" + width + "' style='font-size: 50%'>" );

    document.write( "<tr>" );
    document.write( "  <td width=30></td>" );
    
    document.write( "  <td align='center'>" );
    document.write( "     All Images Copyrights to V&iacute;ctor M. Muriel<br>All Rights Reserved" );
    document.write( "  </td>" );

    document.write( "  <td width=30></td>" );
    document.write( "</tr>" );

    document.write( "</table>" );
    
}
