// JavaScript Document

function p(element){
  w = window.open(element.href, element.name, 'width=800, height=600, scrollbars=yes, resizable=yes');	
  try {
	 w.focus();
  } catch(e) {
	 //don't worry about it
  }
  return false;
}