var openWindow;
function newWin(link) {
	if (Firefox=1) {openWindow = window.open(link, "new","menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes, width=800,height=600");
	}
	
  else if (MSIE=1) {openWindow = window.open(link,"new","fullscreen,scrollbars");
  }
  
  if (openWindow.open) {
    openWindow.close;
  }
  openWindow.focus();
}