// JavaScript Documentvar popUpWin=0;function popUpWindow(lsURL){	var liLeftPos = 0;	var liTopPos = 0;	var liWidth = 477;	var liHeight = 680;	if(screen){		liLeftPos = (screen.width/2) - (liWidth/2);		liTopPos = (screen.height/2) - (liHeight/2);	}  if(popUpWin)  {    if(!popUpWin.closed) popUpWin.close();  }  popUpWin = open(lsURL, 'popUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+liWidth+',height='+liHeight+',left='+liLeftPos+', top='+liTopPos+',screenX='+liLeftPos+',screenY='+liTopPos+'');}function popUpWindowTwo(lsURL){	var liLeftPos = 0;	var liTopPos = 0;	var liWidth = 843;	var liHeight = 601;	if(screen){		liLeftPos = (screen.width/2) - (liWidth/2);		liTopPos = (screen.height/2) - (liHeight/2);	}  if(popUpWin)  {    if(!popUpWin.closed) popUpWin.close();  }  popUpWin = open(lsURL, 'popUpWin', 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+liWidth+',height='+liHeight+',left='+liLeftPos+', top='+liTopPos+',screenX='+liLeftPos+',screenY='+liTopPos+'');}