var popWinAdv
function openWindowAdv(page, width, height, scrollbars, titlebar, resizable, status, menubar, toolbar) 
{
	if (scrollbars) scrollbars = "yes";
	else scrollbars = "no";
        if (popWinAdv != null && !popWinAdv.closed) popWinAdv.close();
        popWinAdv = window.open(page,"PopUp","width="+width+",height="+height+",dependent=yes,resizable,scrollbars="+scrollbars+",titlebar="+titlebar+",resizable="+resizable+",status="+status+",menubar="+menubar+",toolbar="+toolbar); 
}