﻿function win_viewimgncp (ttl,img,w,h) {
//  if(imgwin && !imgwin.closed) {
//    imgwin.close();
//  }
  x=(screen.availWidth-w);
  imgwin=window.open("","ViewImg","toolbar=no,menubar=no,status=no,width=10,height=10,top=1,left="+x);
  imgwin.resizeTo(w+10,h+56);
  imgwin.moveTo(x-5,1);
  imgwin.document.open();
  imgwin.document.writeln("<HTML><HEAD><TITLE>"+ttl+"</TITLE>");
  imgwin.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  imgwin.document.writeln("</HEAD>");
  imgwin.document.writeln("<BODY>");
  imgwin.document.write('<DIV style="position:absolute;width:'+w+'px;height:'+h+'px;left:0px;top:0px">');
  imgwin.document.writeln("<IMG src='"+img+"' ALT='"+ttl+"' border=0></div>");
  imgwin.document.writeln("</BODY></HTML>");
  imgwin.document.close();
  imgwin.focus();
}
function win_viewimg (ttl,img,w,h) {
//  if(imgwin && !imgwin.closed) {
//    imgwin.close();
//  }
  x=(screen.availWidth-w);
  imgwin=window.open("","ViewImg","toolbar=no,menubar=no,status=no,width=10,height=10,top=1,left="+x);
  imgwin.resizeTo(w+10,h+56);
  imgwin.moveTo(x-5,1);
  imgwin.document.open();
  imgwin.document.writeln("<HTML><HEAD><TITLE>"+ttl+"</TITLE>");
  imgwin.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  imgwin.document.writeln("</HEAD>");
  imgwin.document.writeln("<script language='JAVASCRIPT'>");
  imgwin.document.writeln("function ctr_mouseclick() {");
  imgwin.document.writeln("if (event.button==2) {");
  imgwin.document.writeln("  alert('Copyright © by A.O.M.. All right reserved.');");
  imgwin.document.writeln("}}");
  imgwin.document.writeln("document.onmousedown=ctr_mouseclick;");
  imgwin.document.writeln("</script>");
  imgwin.document.writeln("<BODY>");
  imgwin.document.write('<DIV style="position:absolute;width:'+w+'px;height:'+h+'px;left:0px;top:0px">');
  imgwin.document.writeln("<IMG src='"+img+"' ALT='"+ttl+"' border=0></div>");
  imgwin.document.writeln("</BODY></HTML>");
  imgwin.document.close();
  imgwin.focus();
}

function win_viewpage (html,w,h) {
//  if(pagewin && !pagewin.closed) {
//    pagewin.close();
//  }
  x=(screen.availWidth-w);
  pagewin=window.open(html,"ViewPage","toolbar=no,menubar=no,width=10,height=10,top=1,left="+x);
  pagewin.resizeTo(w+10,h+25);
  pagewin.moveTo(x-7,1);
  pagewin.focus();
}

function win_viewimgscr (ttl,img,w,h) {
//  if(imgwin && !imgwin.closed) {
//    imgwin.close();
//  }
  x=(screen.availWidth-w);
  imgwin=window.open("","ViewImg","toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,status=no,width=10,height=10,top=1,left="+x);
  imgwin.resizeTo(w+20,h);
  imgwin.moveTo(x-5,1);
  imgwin.document.open();
  imgwin.document.writeln("<HTML><HEAD><TITLE>"+ttl+"</TITLE>");
  imgwin.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">');
  imgwin.document.writeln("</HEAD>");
  imgwin.document.writeln("<script language='JAVASCRIPT'>");
  imgwin.document.writeln("function ctr_mouseclick() {");
  imgwin.document.writeln("if (event.button==2) {");
  imgwin.document.writeln("  alert('Copyright © by A.O.M.. All right reserved.');");
  imgwin.document.writeln("}}");
  imgwin.document.writeln("document.onmousedown=ctr_mouseclick;");
  imgwin.document.writeln("</script>");
  imgwin.document.writeln("<BODY>");
  imgwin.document.write('<DIV style="position:absolute;width:'+w+'px;height:'+h+'px;left:0px;top:0px">');
  imgwin.document.writeln("<IMG src='"+img+"' ALT='"+ttl+"' border=0></div>");
  imgwin.document.writeln("</BODY></HTML>");
  imgwin.document.close();
  imgwin.focus();
}

function link_to_Carduelis (ttl) {

  htmlwin=window.open("","htmlwin","toolbar=no,menubar=no,scrollbar=yes,resizable=yes,copyhistory=yes,width=480,height=150");
  
  htmlwin.document.open();
  htmlwin.document.clear();
  htmlwin.document.writeln("<HTML><HEAD><TITLE>",ttl,"</TITLE></HEAD>");
  htmlwin.document.writeln('<link rel="STYLESHEET" type="text/css" href="../carduelistyle.css">');
  htmlwin.document.writeln('<BODY bgcolor=#ffffff class=maintext>');
  htmlwin.document.writeln('<DIV align=center valign=middle>');
  htmlwin.document.writeln('<a href="http://carduelis.too.it">');
  htmlwin.document.writeln('<img src="carduelis_banner.jpg" align=center border=0>;</a>');
  htmlwin.document.writeln("</div><hr><center><form><input type=button Value=Close OnClick='window.close()'></form></center>");
  htmlwin.document.writeln("</body></html>");
  htmlwin.document.close();
  htmlwin.focus();
}

function HappyNewYear (w,h) {
    var NewYearWin;
    x=(screen.availWidth-w);
    winpar="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width="+w+",height="+h+",top=1,left="+x;
    NewYearWin=window.open("HappyNewYear/snowing.html","NewYearWin",winpar);
    NewYearWin.focus();
}

function ctr_mouseclick() {
  if (event.button==2) {
    alert('Copyright © by A.O.M. All right reserved.');
  }
}