function imgwin(url,base,title,width,height) {
	var win = window.open("about:blank","_blank","toolbar=0,menubar=0,location=0,status=0,resizable=0,scrollbars=0,top=0,left=0,width="+width+",height="+height);
	win.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	win.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml">');
	win.document.writeln('<head>');
	win.document.writeln('<title>emotiondrive: '+title+'</title>');
	win.document.writeln('<base href="'+base+'" />');
	win.document.writeln('</head>');
	win.document.writeln('<body style="margin:0px;padding:0px">');
	win.document.writeln('<a href="javascript:window.close()"><img src="'+url+'&amp;w='+width+'&amp;h='+height+'" border="0" alt="'+title+'" /></a>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.focus();
}

function gamewin(url,width,height) {
	var win = window.open(url,"edgame","toolbar=0,menubar=0,location=0,status=0,resizable=0,scrollbars=0,top=0,left=0,width="+width+",height="+height);
	win.focus();
}
