// JavaScript Document
function NewWindow(url, name, width, height) {
var Win = window.open(url,"" + name + "",'width=0' + width + ',height=0' + height + ',resizable=no,scrollbars=no,menubar=no,status=no' );
Win.focus();  
}
