var login_form = '<div id="flashchat" align="center">';
login_form += '<table width="100%" border="0" cellspacing="2" cellpadding="3" align="center">';
login_form += '<tr>';
login_form += '<td colspan="2" height="7"><!----></td>';
login_form += '</tr>';
login_form += '<tr valign="bottom">';
login_form += '<td width="40%" align="center"><font face=Arial size=2>Nickname:</font></td>';
login_form += '<td width="60%"><input type="text" id="user" name="user" size="10" value="guest"></td>';
login_form += '</tr>';
login_form += '<tr>';
login_form += '<td>&nbsp</td>';
login_form += '<td><input type="submit" value="Chat Now" onClick="popchat()"> </td>';
login_form += ' </tr>';
login_form += '</table>';
login_form += '</div>';
document.write(login_form);

function popchat()
{
var guestname = document.getElementById('user').value;
guestname = (guestname != "")?guestname:"guest";
var chatwidth = 700;
var chatheight = 580;
document.getElementById('flashchat').innerHTML = '<embed src="http://69.167.178.126:35555/123flashchat.swf?init_host=69.167.178.126&init_port=51127&init_group=default&init_port_h=&init_room=21&init_user=' + guestname + '&init_password=" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + chatwidth + '" height="' + chatheight + '" allowScriptAccess="always"></embed>';
}
