<!--

var newwindow;

function openwindow (url,name,width,height){
    newwindow=window.open(url,name,'width=' + width + ',height=' + height + ',screenX=100,screenY=100,left=100,top=100');
    if (window.focus) {newwindow.focus()}
}

-->