function openWindow(URL, name, width, height) {
  var variables = 
 	"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" 
 	+ width + ",height=" + height + ",left=0,top=10"; 
 	newWindow = window.open(URL, name, variables);
}

