// JavaScript Document

function openWindow(url, name, width, height) {
  mywin = window.open(url, name, 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0')
}
// Please note that the variables set to 1 (toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0) can be changed to 0 in order to remove say, the toolbar, or the scrollbars. The name variable isn't really useful unless you've more complex JavaScripts on your page, that need to take windows into consideration. I'll just let it stay anyway.

