function open_win(url,width,height)
{
	var scr_w = screen.width;
	var scr_h = screen.height;
	var left = ( scr_w - width) / 2;
	var top = ( scr_h - height ) / 2;
	window.open(url,'icon','height='+height+',width='+width+',top='+top+',left='+left+',scrollbars=no');
}

function select_icon(name)
{
	window.opener.document.link_image.src = name;
	window.opener.document.addlink.form_input_add_link_icon.value = name;		
	window.close();
}

function select_selected(list, selected_value)
{
 var count = list.options.length;
 for (var current = 0; current < count; current ++)
 {
  if (list.options[current].value == selected_value)
  {
   list.options[current].selected = "1";
   break;
  }
 }
}

function ConfirmGo(info, href) 
{
	if (confirm(info)) window.location = href;
}