function draw_flash(text1,text2,text3){
	full_text="&text1=" + text1 + "&text2=" + text2 + "&text3=" + text3;
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="765" height="204" id="main" align="middle"><param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="../main.swf?sound=' + getCookie("sound") + '' + full_text + '" />');
	document.write('<param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><param name="wmode" value="transparent" />');
	document.write('<embed src="../main.swf?sound=' + getCookie("sound") + '' + full_text + '" quality="high" bgcolor="#ffffff" width="765" height="204" name="main" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}
function setCookie(name, value, expires, path, domain, secure){
	document.cookie= name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "");
}

function getCookie(name){
	var dc = document.cookie;
	var prefix = name + "=";
	var begin = dc.indexOf("; " + prefix);
	if (begin == -1){
		begin = dc.indexOf(prefix);
		if (begin != 0) return null;
	}
	else{
		begin += 2;
	}
	var end = document.cookie.indexOf(";", begin);
	if (end == -1){
		end = dc.length;
	}
	return unescape(dc.substring(begin + prefix.length, end));
}

function deleteCookie(name, path, domain){
	if (getCookie(name)){
		document.cookie = name + "=" + ((path) ? "; path=" + path : "") + ((domain) ? "; domain=" + domain : "") + "; expires=Thu, 01-Jan-70 00:00:01 GMT";
	}
}

<!--// Popup Loader Here

// GET SCREEN SIZE (JavaScript 1.2 only)
var _top=60;
var _left=70;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
// for centering
if ( ( (bName == "Microsoft Internet Explorer") || (bName == "Netscape") ) && (bVer >= 4) ) {
	w=screen.width
	h=screen.height
	if (screen.width > 1024) { w = 1024 }
	if (screen.height > 768) { h = 768 }
	  // set size
	_top = ( 10 );
	_left = ( 10 );
}
else {
}
// END SCREEN SIZE ------------------------------------------------------

function pop(page,sizew,sizeh) {
	window.onerror=null;
    if (sizew == null) {sizew=660;sizeh=400;}
	if (bVer >= 3) {
		var _loc = page;
		var _sizew = sizew;
		var _sizeh = sizeh;
		var _params = "toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=" + _sizew +",height=" + _sizeh + ",top=" + _top + ",left=" + _left;
		var xwin = window.open(_loc,"popup",_params);
		if (xwin.opener == null) { xwin.opener = self; }
		xwin.focus();
	}
}

//-->


