// JavaScript Document
<!--
function newWindow(url, width, height) {
var Win = window.open(url,"newWindow",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,location=no,directories=no,toolbar=no,status=no' );
}
//-->
