//var popUpWin=0;
function popUpWindow(URLStr, winName,left, top, width, height, scrollbars, resizable){
  if(popUpWin)  {
    if(!popUpWin.closed) popUpWin.close();
  }
  //scrollbar=2;
  left = (screen.width-width)/2;
  top = (screen.height-height)/2;
  
 // scrollbar="";
  var features="toolbar=no,location=no,directories=no,status=no";
  features += ",scrollbars=" + scrollbars;
  features += ",resizable=" + resizable;
  features += ",copyhistory=yes"
  features += ",width=" + width + ",height=" + height
  features += ",left=" + left + ", top=" + top + ",screenX=" + left + ",screenY=" + top 
  var popUpWin = window.open(URLStr, winName, features);
  
  popUpWin.focus();
  //registerPopUp(popUpWin);
  return popUpWin;
}


function openTrailer(url,w,h){
	//var url=section + "-noticeboard.htm";
	//alert("hello");
	//var url = obj.href;
	//alert(url);
	var win = popUpWindow(url,"activity",0,0,w,h,"yes","yes");
}


function openVideoEditor(obj){
	var url = obj.href;
	var win = popUpWindow(url,"VideoEditor",0,0,770,480,"no","no");
}