//<!--

/*
 * wpop
 * pops up
 */

function wpop(url){
  var foo = window.open(url,'bar','width=660,height=760,scrollbars=1,resizable=1');
  foo.focus();
  void(0);  
};

//-->

