
function openwin (url, name, width, height) 
{
    window.open
    (url, name, "width=" + width + ",height=" + height + ",toolbar=0,directories=0,menubar=0,status=0,resizable=yes,location=0,scrollbars=yes");
}

