function flash(name,type,w,h){

bunny = ("<!-- Please don't steal -->\n");
bunny += ("<!-- Copyright © 2002,2003,2004,2005 Nick Coffey -->\n\n");
bunny += ("<html>\n<head>\n");
bunny += ("<title>IFYM</title>\n</head>\n");

var newH = h + 30;
var newW = w + 30;

bunny += ("<body style=\"background-color: black;\">\n");
bunny += ("<table style=\"height: 100%; width: 100%;\"><tr><td style=\"height: 100%; text-align: center; vertical-align: middle; width: 100%;\">");

if(type == "swf"){
	bunny += ("<object width=\""+w+"\" height=\""+h+"\"><param name=\"movie\" value=\""+name+"."+type+"\"><param name=\"quality\" value=\"high\"><embed src=\""+name+"."+type+"\" quality=\"high\" type=\"application/x-shockwave-flash\" width=\""+w+"\" height=\""+h+"\"></embed></object>");
} else if(type == "jpg"){
	bunny += ("<img src=\""+name+"."+type+"\" width=\""+w+"\" height=\""+h+"\" alt=\"\" />");
}

bunny += ("</td></tr></table>");
bunny += ("</body>\n</html>");

var left = (screen.width / 2) - (newW / 2);
var top = (screen.height / 2) - (newH / 2) - 12;

msgWindow = window.open("","","width="+newW+",height="+newH+",left="+left+",top="+top+"");
msgWindow.document.writeln(bunny);

}
