// NEW WINDOW
function new_window(url, width, height)
{
properties="toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=yes, resizable=no";
properties+=",width="+width;
properties+=",height="+height;
unique=new Date();
unique=unique.getSeconds()+"_"+unique.getMinutes()+"_"+unique.getHours();
window.open(url, unique, properties);
}