var popUpWin=0;

function popWin(URLStr,width, height)
{

  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }

  popUpWin = window.open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=485,height=600');
  popUpWin.focus()


}

function fullScreen(url) {
	
	var screenW = screen.width;
	var screenH = screen.height;
	
	if(navigator.appName == "Microsoft Internet Explorer") {
		screenW -= 10;
		screenH -= 40;
	}
	
	fullWin = window.open(url, 'fullWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+screenW+',height='+screenH+',left=0, top=0');
}


