var animationURL = new Array();
animationURL[0] = "";
animationURL[1] = "ani/stooges.gif";
animationURL[2] = "ani/alfred.gif";
animationURL[3] = "ani/clown.gif";
animationURL[4] = "ani/head.gif";
animationURL[5] = "ani/walkingahead2.gif";
animationURL[6] = "ani/brainy.gif";
animationURL[7] = "ani/dot.gif";

var soundURL = new Array();
soundURL[0] = "";
soundURL[1] = "aud/attention.wav";
soundURL[2] = "aud/fart.wav";
soundURL[3] = "aud/stooges.wav";
soundURL[4] = "aud/peewee2.wav";
soundURL[5] = "aud/chips.wav";
soundURL[6] = "aud/demonlol.wav";
soundURL[7] = "";

function previewit() {
var w = 575;
var h = 350;
var X = (screen.availWidth - w) / 2;
var Y = (screen.availHeight - h) / 2;
var win= window.open ("","","scrollbars=yes,width="+w+",height="+h+",left="+X+",top="+Y+"");
win.document.write('<html><head><title>Preview - Top Secret</title><meta http-equiv="imagetoolbar" content="no"></head><body bgcolor="#000000">');
  win.document.write('<center><img src="' + animationURL[document.mail.animation.selectedIndex] + '"></center>');
  win.document.write('<bgSound src="' + soundURL[document.mail.sound.selectedIndex] + '" hidden=true><br>');
  win.document.write('<span style="font:bold italic 17px verdana; color:#ffffff;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + document.mail.comments.value + '</span></body></html>');
 }