function postIt()
{
	var baseUrl = $('server_www').value+"upload-bar/";
	sid = $('video_form').sessionid.value;
	iTotal = escape("-1");
	baseUrl += "?iTotal=" + iTotal;
	baseUrl += "&iRead=0";
	baseUrl += "&iStatus=1";
	baseUrl += "&sessionid=" + sid;

	open_back_win(baseUrl,"Uploader",500,150);
	$('video_form').submit();
}

function open_back_win(link, name, width, height, left, top)
{
  if(!width)  width=400;
  if(!height) height=400;
  if(!left)   left=(screen.width - false) / 2;
  if(!top)    top=(screen.height - height) / 2;

  wopener = window.open(link, name, 'toolbar=0,location=0,status=1,resizable=1,scrollbars=1,width='+ width +',height='+ height +',top='+ top +',left='+ left);
  if (parseInt(navigator.appVersion) >= 4) {
	wopener.window.focus();
  }
	
  return wopener;
}
  

