// JavaScript Document
function newwindow(url)
{
// Set width and height
var winWidth = 550;
var winHeight = 600;
// Set Window position
var winTop = 0;
var winLeft = 0;
// Set other attributes
var toolbar = "no";
var location = "no";
var directories = "no";
var status = "no";
var menubar = "no";
var scrollbars = "yes";
var resizable = "no";
var atts="width="+winWidth+",height="+winHeight+",top="+winTop+",screenY="+winTop+",left="+winLeft+", screenX="+winLeft+", scrollbars="+scrollbars+"";
// open the window
window.open(url,'',atts);
}