function NewWin(page)
{
	win=null;
	w=600;
	h=600;
	s="yes";
	LeftPosition=(screen.width)?(screen.width-w)/2:0;
	TopPosition=(screen.height)?(screen.height-h)/2:0;
	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+s+',resizable=no';
	
	win=window.open(page,"displayWindow",settings);
	win.focus();
}
function ViewUrl(page)
{
	win=null;
	w=300;
	h=100;
	s="yes";
	LeftPosition=(screen.width)?(screen.width-w)/2:0;
	TopPosition=(screen.height)?(screen.height-h)/2:0;
	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+s+',resizable=no';
	
	win=window.open(page,"displayWindow",settings);
	win.focus();
}