<!-- Hide from incompatible browsers

var mywin=null;

function picPopUp(pic,winWidth,winHeight,caption){

  var popFormat=" addrbar=no,toolbar=no,location=no,directories=no,"
  popFormat+="status=yes,menubar=no,scrollbars=no,resizable=yes,"
  popFormat+="width=1,height=1";

  var mywin=window.open("","popWindow",popFormat);

  mywin.document.write("<html><head><title></title>");
  mywin.document.write("<link rel='stylesheet' type='text/css' href='css/cosee.css'>");
  mywin.document.write("</head>");
  mywin.document.write("<body bgcolor='black'><br />");
  mywin.document.write("<table align='center' border='0' align='center' cellspacing='0' cellpadding='0'><tr><td>");
  mywin.document.write("<table align='center' cellspacing='0' cellpadding='0' border='1' style='border-collapse:collapse' bordercolor='white' align='center'><tr><td>");
  mywin.document.write("<img src='"+pic+"' width='"+winWidth+"' height='"+winHeight+"' alt='COSEE-OS Photos'>");
  mywin.document.write("</td></tr></table>");
  mywin.document.write("</td></tr>");
  mywin.document.write("<tr><td height='5'><spacer type='block' width='1' height='5'>");
  mywin.document.write("<tr><td align='center'><span style='font-family:verdana;font-size:8pt'>");
  mywin.document.write(caption);
  mywin.document.write("</span>");
  mywin.document.write("<tr><td height='12'><spacer type='block' width='1' height='12'>");
  mywin.document.write("</td></tr>");
  mywin.document.write("<tr><td>");
  mywin.document.write("<input type='button' value='Close' style='font:arial;font-weight:bold;color:black;font-size:9pt' onclick='javascript:window.close()'>");
  mywin.document.write("</td></tr></table>");
  mywin.document.write("<br />");
  
  mywin.document.write("</body></html>");
  mywin.resizeTo(winWidth+100,winHeight+170);
  self.focus(); 
  mywin.document.close();
  mywin.focus();
  mywin=null;
}

function textPopUp(text,winWidth,winHeight){
  var popFormat=" addrbar=no,toolbar=no,location=no,directories=no,"
  popFormat+="status=yes,menubar=no,scrollbars=no,resizable=yes,"
  popFormat+="width=1,height=1";

  var mywin=window.open("","popWindow",popFormat);

  mywin.document.write("<html><head><title>Message</title>");
  mywin.document.write("<link rel='stylesheet' type='text/css' href='css/cosee.css'>");
  mywin.document.write("</head>");
  mywin.document.write("<body bgcolor='black'>");
  mywin.document.write("<div class='popups'>");
  mywin.document.write(text);
  mywin.document.write("<br /><br />");
  mywin.document.write("<input type='button' value='Close' style='font:verdana;font-weight:bold;color:black;font-size:9pt' onclick='javascript:window.close()'>");
  mywin.document.write("</div>");
  mywin.document.write("</body></html>");
  mywin.resizeTo(winWidth+100,winHeight+135);
  self.focus(); 
  mywin.document.close();
  mywin.focus();
  mywin=null;
}

var newwindow;

function popUp(url,winWidth,winHeight) {
  var popFormat=" addrbar=no,toolbar=no,location=no,directories=no,"
  popFormat+="status=yes,menubar=yes,scrollbars=yes,resizable=yes,"
  popFormat+="width=1,height=1";
  
  newwindow=window.open(url,"popWindow",popFormat);
  if (window.focus) {newwindow.focus()}
  newwindow.resizeTo(winWidth+50,winHeight+50);
}

function picPopUpCaption(pic,winWidth,winHeight,caption){

  var popFormat=" addrbar=no,toolbar=no,location=no,directories=no,"
  popFormat+="status=yes,menubar=no,scrollbars=no,resizable=yes,"
  popFormat+="width=1,height=1";

  var mywin=window.open("","popWindow",popFormat);

  mywin.document.write("<html><head><title></title>");
  mywin.document.write("<link rel='stylesheet' type='text/css' href='css/cosee.css'>");
  mywin.document.write("</head>");
  mywin.document.write("<body>");
  mywin.document.write("<br />");
  mywin.document.write("<table align='center' border='0' align='center' cellspacing='0' cellpadding='0'><tr><td>");
  mywin.document.write("<table align='center' border='1' style='border-collapse:collapse' bordercolor='#eeeeee' align='center' cellspacing='0' cellpadding='0'><tr><td>");
  mywin.document.write("<img src='"+pic+"' width='"+winWidth+"' height='"+winHeight+"' alt='COSEE-OS Photos'>");
  mywin.document.write("</td></tr></table>");
  mywin.document.write("</td></tr>");
  mywin.document.write("<tr><td height='5'><spacer type='block' width='1' height='1'>");
  mywin.document.write("</td></tr>");
  mywin.document.write("<tr><td align='center'><span style='font-family:verdana;font-size:8pt'>");
  mywin.document.write(caption);
  mywin.document.write("</span>");
  mywin.document.write("<tr><td height='12'><spacer type='block' width='1' height='12'>");
  mywin.document.write("</td></tr>");
  mywin.document.write("<tr><td>");
  mywin.document.write("<input type='button' value='Close' style='font:arial;font-weight:bold;color:black;font-size:9pt' onclick='javascript:window.close()'>");
  mywin.document.write("</td></tr></table>");
  mywin.document.write("<br />");
  
  mywin.document.write("</body></html>");
  mywin.resizeTo(winWidth+100,winHeight+175);
  self.focus(); 
  mywin.document.close();
  mywin.focus();
  mywin=null;
}

// Stop hiding from incompatible browsers -->
 