function wwWindow(url,width,height)
{
w = window.open(url,'width=' + width + ',height=' + height + ',status=no,menubar=no,resizable=no,scrollbars=no,left=' + String(screen.width-width+100) + ',top=' + String(screen.height+height));
w.focus();
}
