// JavaScript Document

win = null;
//Open a new window & display story
function winOpen(addrObj){
	win = window.open(addrObj,'doc','top=10px,left=10px,width=420px,height=550px,resizable,scrollable=yes');
	if(win)win.focus(); // bring window to front if 2nd Clicked
}