// JavaScript Document

function openPopup(file,target,w,h,scroll,left,others,resizable) 
{
   if (!resizable) resizable = 'yes';   
   if (!scroll) scroll='auto';
   if (!h) h=580;
   if (!w) w=800;
   if (others) 
     others=','+others;
   else
	   others='';
  if (left=="0") 
    l = 0
	else 
	 l = (screen.width/2)-(w/2);
   window.open(file,target,'width='+w+',height='+h+',left='+l+',top=0,      scrollbars='+scroll+''+others+',resizable='+resizable);
}

