
function Window_PopUp(winurl,winname,winfeatures)
{
	var newwin;

	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);
	newwin.focus();
}

function Window_OpenFavoritesWindow(sPage) {
	var sWinProps = 'height=300,width=250,top=235,left=310,scrollbars=no,toolbar=no,location=no';
	Window_PopUp(sPage, 'sGotoWin3', sWinProps);
}

