var animationURL = new Array();
animationURL[0] = "";
animationURL[1] = "ani/kiss2.gif";
animationURL[2] = "ani/rose.gif";
animationURL[3] = "ani/dove.gif";
animationURL[4] = "ani/romance.gif";
animationURL[5] = "ani/sex.gif";
animationURL[6] = "ani/fireworks.gif";
animationURL[7] = "ani/dot.gif";
var soundURL = new Array();
soundURL[0] = "";
soundURL[1] = "aud/2sexy.wav";
soundURL[2] = "aud/heart.wav";
soundURL[3] = "aud/hidarlin.wav";
soundURL[4] = "aud/horny.wav";
soundURL[5] = "aud/kiss2.wav";
soundURL[6] = "aud/ooh_la_la.wav";

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>');
 }