function openWin(url, name, width, height) {
        if ((!width) || (!height)){
                width = "450";
                height = "450";
        }
	popupwin = window.open(url, name, "scrollbars=yes, resizable=yes, menubar=no, locationbar=no, status=no, height="+height+",width="+width);
}