function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function animate_menu(button) {
	button.style.backgroundImage = "url('../images/navbar-middle-highlight.gif')";
	button.style.cursor="hand";
}

function unanimate_menu(button) {
	button.style.backgroundImage = "url('../images/navbar-middle.gif')";
}

<!-- 
// Sample Call:
// javascript:SutherlandPic('http://www.sutherlandsolar.com/images/test.jpg', 'TEST', 800, 600)

function sutherland_pic(picURL, textmsg, winWidth, winHeight) 
{
new_window = open('','displayWindow','width=' + winWidth + ',height=' + winHeight + ',left=10,top=10');

// open new document 
new_window.document.open();

new_window.document.write('<html><title>Sutherland Solar - Image Detail</title>');
new_window.document.write('<body bgcolor=\'#000000\'><CENTER>');
new_window.document.write('<font face=\'Verdana, Arial, Helvetica, sans-serif\' size=\'3\' color=\'#FFFFFF\'>');
new_window.document.write('<img src=\'');
new_window.document.write(picURL);
new_window.document.write('\'>');
new_window.document.write('<br><b>');
new_window.document.write(textmsg);
new_window.document.write('</b><br>');
new_window.document.write('</body></html>');

// close the document
new_window.document.close(); 
}

function sutherland_example_pic(picURL, textmsg) 
{
new_window = open('','displayWindow','width=740,height=580,left=10,top=10');

// open new document 
new_window.document.open();

new_window.document.write('<html><title>Samples of Our Work - Sutherland Solar</title>');
new_window.document.write('<body bgcolor=\'#FFFFEE\'><CENTER>');
new_window.document.write('<font face=\'Verdana, Arial, Helvetica, sans-serif\' size=\'2\' color=\'#000000\'>');
new_window.document.write('<img src=\'');
new_window.document.write(picURL);
// new_window.document.write('\' width=\'600\' height=\'400\'>');
new_window.document.write('\'>');
new_window.document.write('<br><br><b>');
new_window.document.write(textmsg);
new_window.document.write('</b><br><br>');
new_window.document.write('<font size=\'2\'><A HREF=\'javascript:\window.close()\'>CLOSE</A>');
new_window.document.write('</body></html>');

// close the document
new_window.document.close(); 
new_window.focus();
}
