function newWin(where)	{	
		new_win = window.open(where, "example", "location,status,scrollbars,menubar,resizable,toolbar,width=600,height=500");
		new_win.focus();		
	}
	
// open page in new window by making the href="javascript:newWin(whatever url you want to open here in single quotes);"