function showWindow(filename,width,height,scrollattr)
{
popupwindow=window.open(filename,"_blank","toolbar=no,width="+width+",height="+height+",scrollbars="+scrollattr);
if (window.focus) {popupwindow.focus()}
	return false;

}
