function popup(url, name, width, height)
{
settings=
"toolbar=no,location=no,directories=no,"+
"status=no,menubar=no,scrollbars=no,"+
"resizable=no,width="+width+",height="+height;

logs=window.open(url,name,settings);
}

function tab(title ,mess ,close )
{
document.write("<br><table  cellpadding='0' cellspacing='0' class='tab' width='288' height='144' border='0' align='center' >")
document.write("<tr><td colspan='2' bgcolor='#666666' height='21' align='left'><p class='subfont'>"+title+"</p></td></tr>")
document.write("<tr><td colspan='2' height='123' align='left' bgcolor='#ffffff'><p class='s_text'>")
document.write(mess+"<br>")
document.write(close)
document.write("</td></tr>")
document.write("</table><br>")
}