// JavaScript Document
function openBox(winwidth,winheight,scrollbars,toolbar,top,left,filesrc)
  {   
		   var newparameter="width="+winwidth+",height="+winheight+",scrollbars="+scrollbars+",toolbar="+toolbar+",top="+top+",left="+left;
		   newWindow=open(filesrc,"a",newparameter);
		   newWindow.focus();
  }