var newWindow = null;
function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.document.close();
			newWindow.close();
	}
}
function popTextWin(url, strWidth, strHeight){
	closeWin();
	var tools="width="+strWidth+",height="+strHeight+",left=0,top=0,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=yes,toolbar=no";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}
function popUpWin(url, strWidth, strHeight, alt, caption){
	closeWin();
	var tools="width="+(strWidth+20)+",height="+(strHeight+20)+",left=0,top=0,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=yes,toolbar=no";
	newWindow = window.open('', 'newWin', tools);
	newWindow.document.open();
	newWindow.document.write('<html>\n');
	newWindow.document.write('<head>\n');
	newWindow.document.write('<title>'+alt+'</title>\n');
	newWindow.document.write('<link rel=\"stylesheet\" type=\"text/css\" href=\"gallery.css\">\n');
	newWindow.document.write('</head>\n');
	newWindow.document.write('<body style=\"background-color:white;\">\n'); 
	newWindow.document.write('<div style=\"text-align:center;\"><img src=\"'+url+'\" alt=\"'+alt+'\" border=\"0\" style=\"margin-left:auto;margin-right:auto;margin-top:15px;border:2px solid #000000;\"></div>\n');
	newWindow.document.write('<p style=\"text-align:center;margin-left:0;margin-top:10px;margin-left:3px;\">'+caption+'</title>\n');
	newWindow.document.write('</body>\n');
	newWindow.document.write('</html>\n');
	newWindow.document.close();
	newWindow.focus();
}
