function buttonalert(event)
{
    var button;
    if (event.which == null)
       button= (event.button < 2) ? "LEFT" :
                 ((event.button == 4) ? "MIDDLE" : "RIGHT");
    else
       button= (event.which < 2) ? "LEFT" :
                 ((event.which == 2) ? "MIDDLE" : "RIGHT");
    alert(button);
    dont(event);
}
function dont(event)
{
    if (event.preventDefault)
        event.preventDefault();
    else
        event.returnValue= false;
     return false;
}
function transferview1(image,n,width,height) {
  var s1 ="<TITLE>Screen Capture</TITLE>";
  var s15="";
  var s2 ="<img src='"+image+"'>";
  var s3 ="<form><input class='button' value='Close Window'"+ " onClick='window.close()'></form>";
  if (width==0) cond1=" "
  else cond1="width="+(width+20)+"";	
  if (height==0) {cond2=" "}
		else {cond2="height="+(height+70)+""};
  ImageWindow=window.open("",n+width,"toolbar=no,scrollbars="+scroll+",menubar=no,"+cond1+","+cond2);
  ImageWindow.document.write("<html>");
	ImageWindow.document.write("<head>");
	ImageWindow.document.write("<link href='css/gjc.css' type='text/css' rel='stylesheet' media='all' />");
	ImageWindow.document.write("<link href='css/ss.css' type='text/css' rel='stylesheet' media='all' />");
	ImageWindow.document.write("</head>");
	ImageWindow.document.write("</body>");
	ImageWindow.document.write("<div class='screenpage'>");
	ImageWindow.document.write(s2);
	ImageWindow.document.write(s3);
	ImageWindow.document.write("</div>");
	ImageWindow.document.write("</body>");
	ImageWindow.document.write("</html>");
	ImageWindow.document.close();
}