
function fullPop(url){
  var fullWindow;
  var windowHeight=screen.height-80;
  var windowWidth=screen.width-10;
  var windowFeatures;
  windowFeatures = "height="+windowHeight+",width="+ windowWidth+",top=0,left=0,resizable=1,toolbar=no"
  fullWindow=window.open(url,'fullWindowAj', windowFeatures);
}

