function window_open(url,width,height)
{
    var newWindow=window.open(url,null,"scrollbars,resizable,width=" + width +",height=" + height);
}

