function pop(url, x, y){
   window.open(url,'popup','width='+x+',height='+y+',scrollbars=yes');
 }
 
function openThis(url, x, y){
   features='top=100,left=100,width='+x+',height='+y+',scrollbars=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,status=yes';
   mywindow=window.open(url,'profile',features);
   mywindow.focus();	
 }
 
function openNew(url, x, y, name){
   features='top=150,left=150,width='+x+',height='+y+',scrollbars=yes,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,directories=yes,status=yes';
   mywindow=window.open(url,name,features);
   mywindow.focus();	
 }

