function popup( url, name, width, height ) {
	window.open( url, name, 'menubar=no, resizable=no, scrollbars=no, width='+width+', height='+height);
}

function popup2( url, name, menubar, resizable, scrollbars, width, height ) {
	window.open( url, name, 'menubar='+menubar+', resizable='+resizable+', scrollbars='+scrollbars+', width='+width+', height='+height);
}