function OpenNewWindow(bigurl, width, height){
	var newWindow = window.open("", "pictureViewer", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height);
	newWindow.document.writeln("<html><head><title>&#169; Woody Shepherd 2002-2007</title></head>");
	newWindow.document.writeln("<body style='margin: 15px; scroll: auto; text-align: center;'>");
	newWindow.document.writeln("<a href='javascript:window.close();'>");
	newWindow.document.writeln("<img src='" + bigurl + "' alt='Click to close' id='bigImage' border='0'/>");
	newWindow.document.writeln("</a>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.resizeTo(width+30,height+60);
newWindow.focus();
}
function OpenVideo(bigurl, width, height){
	var newWindow = window.open("", "pictureViewer", "location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=" + width + ", height=" + height);
	newWindow.document.writeln("<html><head><title>&#169; Woody Shepherd 2002-2007</title></head>");
	newWindow.document.writeln("<body style='margin: 15px; scroll: auto; text-align: center;'>");
	newWindow.document.writeln("<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' height='256' width='320'>");
	newWindow.document.writeln("<param name='src' value='" + bigurl +"'>");
	newWindow.document.writeln("<param name='autoplay' value='true'>");
	newWindow.document.writeln("<param name='type' value='video/quicktime' height='256' width='320'>");
	newWindow.document.writeln("<embed src='" + bigurl + "' height='256' width='320' autoplay='true' type='video/quicktime' pluginspage='http://www.apple.com/quicktime/download/'>");
	newWindow.document.writeln("</object><br>");
	newWindow.document.writeln("<a href='javascript:window.close();'>[close window]</a>");
	newWindow.document.writeln("</body></html>");
	newWindow.document.close();
	newWindow.resizeTo(width+30,height+60);
}
