function winOpen(file, width, height)
{
    temp = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no," +
           "width=" + width + ",height=" + height;
    window.open(file,'',temp);
}

