//DO NOT steal this snow globe
function preview() {
var snow = document.getElementById("snowcolor").value;
var holder = document.getElementById("holdercolor").value;
var snow = snow.replace('#', '');
var holder = holder.replace('#', '');
var picture = document.getElementById("picture").value;
var fl = document.getElementById("fl");
var f2 = document.getElementById("f2");
var size = document.getElementById("size").value;
var width = ""; var height = "";

if (size != "") {
if (size == "Normal") { width = 225; height = 400; }
if (size == "Small") { width = 112; height = 200; }
if (size == "Tiny") { width = 60; height = 100; }
}
if (size == "") { width = 225; height = 400; }


//fl.src = "snow.swf?picture=" + picture + "&snow_color=0x" + snow + "&holder_color=0x" + holder;
f2.innerHTML = '<embed id="fl" src="http://www.AceLayouts.com/apps/snowglobe/snow.swf?picture=' + picture + '&snow_color=0x' + snow + '&holder_color=0x' + holder + '" quality="high" wmode="transparent" bgcolor="#ffffff" width="' + width + '" height="' + height + '" name="snow" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
}