function viewer(name,image,imageWidth,imageHeight) {
	newWindow = window.open(""+name+"","newWindow","width="+(imageWidth-(-17))+",height="+imageHeight+",scrollbars=yes,left="+(window.screen.width-(imageWidth))/2+",top="+(window.screen.height-(imageHeight))/2+"");
	newWindow.document.open();
	newWindow.document.write('<html><title>'+name+'</title><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onBlur="self.close()">');
	newWindow.document.write('<img src=\"'+image+'\" width='+imageWidth+' height='+imageHeight+'>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();

}
function sizetable(url,imageWidth,imageHeight) {
	newWindow = window.open(""+url+"","name","width="+(imageWidth-(-17))+",height="+imageHeight+",scrollbars=yes,left="+(window.screen.width-(imageWidth))/2+",top="+(window.screen.height-(imageHeight))/2+"");
}

function play(src,x,y) {
document.getElementById('game').innerHTML='<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="'+src+'" play="true" loop="true" menu="true" height="'+y+'" width="'+x+'" />';
}
