function popimage(sPicURL) {
	window.open( "content/popimage.html?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}
function popPage(URL) {
	window.open( "content/"+URL, "", "scrollbars=1,resizable=1,HEIGHT=600,WIDTH=600");
}
/*var newwindow = ''
function popimage(url) {
if (newwindow.location && !newwindow.closed) {
    newwindow.location.href = url;
    newwindow.focus(); }
else {
    newwindow=window.open(url,'htmlname','width=600,height=480,resizable=1');}
}

function tidy() {
if (newwindow.location && !newwindow.closed) {
   newwindow.close(); }
}
*/
// Based on JavaScript provided by Peter Curtis at www.pcurtis.com
