
var  main_url = "http://www.ojaste.com/martin/";

var updated_date = '24 Aug 2010';


// Handle Right clicks.
var message="Copyrighted Material, see copyright notices for more information";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

//drawheader
//displays on screen the logo and web title
function drawheader () {
var  banner = "";
     banner += 
'<body style="font-family: Tahoma; font-size: 10pt">' +
'<table border="0" width="790	" cellspacing="0" cellpadding="0" id="table1" height="100px">' +
'  <tr>' +
'	 <td width="20%" align="Left">' +
'    <img height="97" src="images/logo.gif" width="174">' +
'    </td>' +
'	 <td width="80%" align="middle">' +
'    <span style="text-decoration: none; font-weight:700"><font size="150px" font color="#FF9900">Martin Ojaste</font></span>' +
'    </td>' +
'  </tr>' +
'</table>' +

'<table border="0" width="790	" cellspacing="0" cellpadding="0" id="table1" height="25px">' +
' <tr>' +
'	<td width="20%" align="bottom">' +
'	<font size="2" color="#FFCC66"><a target="_parent" href="http://www.martin.ojaste.com">' +
'	<span style="text-decoration: none; font-weight:700"><font color="#FF9900">Home</font></span></a></font></td>' +

'	<td width="20%" align="bottom">' +
'	<font size="2" color="#FFCC66"><a target="_parent" href="http://www.martin.ojaste.com/profile.htm">' +
'	<span style="text-decoration: none; font-weight:700"><font color="#FF9900">Profile</font></span></a></font></td>' +

'	<td width="20%" align="bottom">' +
'	<font size="2" color="#FFCC66"><a target="_parent" href="http://www.martin.ojaste.com/gallery">' +
'	<span style="text-decoration: none; font-weight:700"> <font color="#FF9900">Photography</font></span></a></font></td>' +

'	<td width="20%" align="bottom">' +
'	<font size="2" color="#FFCC66"><a target="_parent" href="http://www.martin.ojaste.com/about.htm">' +
'	<span style="text-decoration: none; font-weight:700"><font color="#FF9900">About</font></span></a></font></td>' +

'	<td width="20%" align="bottom">' +
'	<font size="2" color="#FFCC66"><a target="_parent" href="http://www.martin.ojaste.com/contact.htm">' +
'	<span style="text-decoration: none; font-weight:700"> <font color="#FF9900">Contact</font></span></a></font></td>' +
'  </tr>' +
'</table>' +
'   <img src="http://www.ojaste.com/martin/images/horizline.gif" width="790" height="1">'
;

document.write (banner);
}

//drawfooter
//displays on screen the footer
function drawfooter () {
var  footer = "";
     footer += 
'<table border="0" width="790" id="table2">'+
'	<tr>'+
'	<img src="http://www.ojaste.com/martin/images/horizline.gif" width="790" height="1">'+
'	<td height="18">'+
'	<p align="center">'+
'	<font color="#FFCC99" size="1"><a target="_parent" href="http://www.ojaste.com/martin/legal.htm">'+
'	<font color="#FF9900" face="Tahoma">'+
'	<span style="text-decoration: none; font-weight:700">'+
'	&copy Copyright 2010 Martin Ojaste'+
//'	<tr> <td><p align="center"><font color="#C0C0C0" size="2" face="Tahoma">Services with Vision ...</font></td>'+
'	</tr>'+
'</table>';
document.write (footer);
}

