var path;
var dimensions;
var newwindow;
var anotherwindow;
var popwin;


function hfapop_win(path,pop_name,options)
{
	if(!options)
   {
options="width=700,height=500,location=yes,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,status=no"; 
   }
	if(path)
   {
      if(!pop_name)
      {
			var n = path.split("/");
			var temp = n[n.length-1];
			n = temp.split(".");
			pop_name = n[0];
		}	
		hfa_popwin = window.open(path,pop_name,options);
      var winObj = window.open(path,pop_name,options);
      if (winObj.focus) winObj.focus();
   }
}


function vidpop_win(path,pop_name,options)
{
	if(!options)
   {
options="width=196,height=170,location=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,status=no"; 
   }
	if(path)
   {
      if(!pop_name)
      {
			var n = path.split("/");
			var temp = n[n.length-1];
			n = temp.split(".");
			pop_name = n[0];
		}	
		hfa_popwin = window.open(path,pop_name,options);
      var winObj = window.open(path,pop_name,options);
      if (winObj.focus) winObj.focus();
   }
}
