var open_win_args = "toolbar=no,location=no,directories=no,status=no,menubar=no,channelmode=no,resizable=yes,titlebar=yes"

function popup(filename, w, h) 
{
	window.open(filename,'newWin1', open_win_args + ',scrollbars=auto' + ',width=' + w + ',height=' + h);  
}

function popup_scroll(filename, w, h) 
{
	window.open(filename,'newWin2', open_win_args + ',scrollbars=yes' + ',width=' + w + ',height=' + h);  
}

