

function showWindow (win, newTitle)
{
var strWindow
strWindow= window.open(win,"" , "width=700, height=800,top=100, left=400,menubar,scrollbars,,resizable");
strWindow.focus();
return false;
}

function showNarrowWindow (win, newTitle)
{
var strWindow
strWindow= window.open(win,"" , "width=500, height=400,top=100, left=400,menubar,scrollbars,,resizable");
strWindow.focus();
return false;
}

function show600Window (win, newTitle)
{
var strWindow
strWindow= window.open(win,"" , "width=600, height=400,top=100, left=400,menubar,scrollbars,,resizable");
strWindow.focus();
return false;
}
