// JavaScript Document function makeNewWindow() { settings='width=140,height=150,scrollbars=no,status=no'; //newWindow = window.open(dest, name, settings); newWindow = window.open('', 'smileys', settings); newWindow.opener = self; newWindow.document.open("text/html"); newWindow.document.write('Smile'); newWindow.document.write('\n'); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write(''); newWindow.document.write('
'); newWindow.document.close(); newWindow.focus(); } function clear_message2() { document.yellform.sub_message.value=""; document.yellform.sub_message.focus(); } function clearMessageBox() { document.yellform.submit(); setTimeout("clear_message2()",200); return false; }