function open_link(link, width, height)
{
	var win;
    win=window.open(link, "_blank","width="+width+",height="+height+",resizable=yes,scrollbars=yes,status=no,toolbars=no");
	win.focus();
}
