function popupNew(content, left, top, width, height, bgcolor) {
// Create the html content
var str = "";
str += "\n<HTML>\n<HEAD>\n";
str += "<title>Info & Stats</title>";
str += "<LINK href='http://www.candyman.se/pe/bobthebuilder/include/text.css' rel='stylesheet' type='text/css'>";
str += "</HEAD>\n";
str += "<BODY BGCOLOR='"+bgcolor+"'>\n";
str += "\n<center><img src='"+content+"'><br>\n";
str += "\n<div style='FONT-FAMILY: Verdana, Geneva, Helvetica, Arial; FONT-SIZE: 10px'><font color='#FFFFFF'>Images by <a href='http://www.entropia-pioneers.com/' target='_blank'><font color='#FFFFFF'>Entropia-Pioneers</font></a>, Candyman and users of Bob the Builder</font></div></center></BODY>\n</HTML>";

// Open the window
var win = openWindow("", "", left, top, width, height, 0, 0);

// Set the content
win.document.open();
win.document.write(str);
win.document.close();
}

// Open a popup browser window
function openWindow(url, title, left, top, width, height, scrollbars, resize) {
eval("var win = window.open(url, title,\"width="+width+",height="+height+",top="+top+",left="+left+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scrollbars+",toolbar=0,resizable="+resize+"\");");

return(win);
} 
