﻿
// OPEN NEW WINDOW FUNCTION (with scrollbars but no toolbar/menubar etc)

function bareWindowWithScroll(url, name, w, h, title) 
{
   var windowprops = "width=" + w + ",height=" + h + ",scrollbars=yes,allowresize=yes,left=0,top=0,toolbar=no,location=no,titlebar=no,resizable=yes";
   popup = window.open(url,name,windowprops);
}

// -->
