function show(file, width, height)
{
file=file + ".html";
window.open(file, "_blank", "width="+width+",height="+height+",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}

function showNew(file, num, width, height)
{
file=file+".php?num="+num+"&width="+width+"&height="+height;
window.open(file, "_blank", "width="+width+",height="+height+",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
}
