

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>'+
	'<table cellpadding="0" cellspacing="0" border="0" width="100%">'+
	'<tr><td class="headingred" height="30" align="center">' +header+ '</td></tr>'+
	'</table>'+
	'<table cellpadding="0" cellspacing="0" border="1" align="center">'+
	'<tr><td><img src=' +picURL+ '></td></tr>'+
	'</table>'+
	'<table cellpadding="0" cellspacing="0" border="0" width="100%">'+
	'<tr><td class="textbold" align="center" height="30">'+ caption + '</td></tr>'+
	'<tr><td class="textbold" align="center"><a href="javascript: windowCloser()">Close Window</a></td></tr>'+
	'</table></body></html>');
	
		if (window.focus) {newWin.focus()}

	
}

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 winOpen2(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=no,resizable=no");
}

function winVideo(thisURL,X1,Y1) { 
	var newWin
  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=no,resizable=no, bgColor=red");
	
	newWin.document.bgColor="666666";
}

function windowCloser() {
	window.close();
}






