

var newWin

function winShowPic(picURL, header, caption, X1, Y1){
	
  var winX=screen.width;
  var winY=screen.height;
	if (!X1) X1=700;
	if (!Y1) Y1=580;
  if (!header) header="";
  if (!caption) caption="";
	
	if (newWin) {
		if (!newWin.closed) {
			newWin.close()
		}
	}

  newWin = window.open("","","toolbar=no,width="+X1+",height="+Y1+",left="+
  (winX-X1)/2+",top="+(winY-Y1-20)/2+",location=no,directories=no, status=no, menubar=no,scrollbars=yes,resizable=yes");

  newWin.document.write('<html><head><title>picture</title><style type="text/css"> '+
	'.textbold{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;color:#000000;font-weight:bold;} '+
	'.headingred{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:13px;color:#FF6666;font-weight:bold;} '+
	'a{color:#006699;text-decoration:none;font-weight:bold;} '+
	'a:hover{color:#006699;text-decoration:underline;font-weight:bold;} '+
	'a:visited{color:#006699;font-weight:bold;}</style> ' +
	'<script language="JavaScript">function windowCloser(){window.close();}</script></head><body><div align="center"> '+
  '<div class="headingred">' +header+ '</div><br> '+
	'<table cellpadding="0" cellspacing="0" border="1"><tr><td><img src=' +picURL+ '></td></tr></table> '+
  '<p><div class="textbold">' +caption+ '<p> '+
  '<a href="javascript: windowCloser()">Close Window</a></div></div><p></body></html>');
}

function winOpen(thisURL,X1,Y1) { 
  var winX=screen.width;
  var winY=screen.height;
	
	if (newWin) {
		if (!newWin.closed) {
			newWin.close()
		}
	}

	newWin=window.open(thisURL,"Popup","toolbar=no,width="+X1+",height="+Y1+",left="+
  (winX-X1)/2+",top="+(winY-Y1-20)/2+",location=no,directories=no, status=no, menubar=no,scrollbars=yes,resizable=yes");
}

function windowCloser() {
	window.close();
}







