function newWindow(title, features)
{
     var newWin=window.open('',title,features);
     newWin.focus();
} 
