function  getEmail(){
  return 'ronar@ronarart.com';
}

function getMotto(){
return '"I can\'t run from myself, there\'s nowhere to hide"  (Ronar)'
;
}

function getBottom(txt, isLink, toLink) {
var txtLink=' ';

if(isLink == 1) {
txtLink = ' <A href="' + toLink + '"><u><b> '
  + '	      <font size="3" face="Helvetica, Arial, sans-serif" color = white '
  + '		   style="margin-right: 10px; margin-left: 15px;">' + txt +'</font> '
  + ' </b></u></a> ';
} else {
txtLink = ' <small> '
	    + '   <font  face="Helvetica, Arial, sans-serif" color="#ffffff"> '
	    + '     Click on any image to  see  the larger version '
	    + '   </font> '
	    + ' </small> ';
}
var txt = '<!-- bottom part/citat i copyright --> '
+ ' <table cellspacing="0" cellpadding="0" '
+ '  width="50%" border="0" align="center"> '
+ '  '
+ '  <tbody> '
+ '   <tr> '
+ '   </tr> '
+ '   '
+ '   <tr> '
+ '    <td align="center" bgcolor=black colspan="5" height="20"> '
+ txtLink
+ '	   </td> '
+ '   </tr> '
+ '  </tbody> '                                                       
+ ' </table> '
+ '  '                                                 
+ ' <table width="100%" border="0" cellspacing="0" cellpadding="0"> '
+ '  <tbody> '
+ '   <tr> '
+ '     <td valign="top" bgcolor="#999999"> '
+ '  '
+ '      <div align="center"><br> '
+ '      </div> '
+ '     </td> '
+ '   </tr> '
+ ' '                         
+ '  </tbody> '                          
+ ' </table> '
+ ' '
+ ' <table width="100%" border="0" cellspacing="0" cellpadding="0"> '
+ '  <tbody> '
+ '   <tr> '
+ '   </tr> '
+ ' '
+ '   <tr> '
+ '     <td bgcolor="#000000" valign="top"> '
+ '	   <div align="center"> '                         
+ ' '
+ '	   <table cellpadding="12" cellspacing="0" '
+ '	     border="0" width="50%" align="center"> '
+ ' '
+ '		 <tbody> '
+ '           <tr> '
+ ' '
+ ' 		    <td valign="top" bgcolor="#999999" align="center"> '
+ '              <div align="justify"> '
+ ' 			  <font size=4 color="#000000" face="Helvetica, Arial, sans-serif"> '
+ ' 			    <small><small> '
+ ' 				  <script language="javascript"> '
+ '	                document.write(getMotto()); '
+ '	              </script> '
+ '				  <br> '
+ '				</small></small> '
+ '              </font> '
+ '			</div> '
+ ' '
+ '            <hr width="100%" size="1" noshade="noshade"> '
+ '			<font color="#cccccc"><small><small> '
+ '			    &copy;2007 '
+ '                <a href="MAILTO:'+ getEmail() +'">RonaR Art Studio</a> '
+ '                 Virginia, USA. All rights Reserved<br> '
+ '            </small></small></font> '
+ '			</td> '
+ '           </tr> '
+ ' '             
+ '         </tbody> '
+ '       </table> '
+ '       </div> '
+ '     </td> '
+ '   </tr> '
+ ' '
+ '  </tbody> '
+ ' </table> '
+ ' '
+ ' <table cellspacing="0" cellpadding="0" '
+ '  width="100%" border="0" align="center"> '
+ '   <tr> '
+ '    <td align="center" bgcolor=black colspan="5" height="10"> '
+ '	</td> '
+ '   </tr> '
+ ' </table> ';

return txt;
}