﻿// JScript File
var popUpWin = 0;
function popUpWindow(URLStr, iLeft, iTop, iWidth, iHeight, iName){
if(popUpWin){
	if(!popUpWin.closed) popUpWin.close();
} 
popUpWin = open(URLStr, iName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,scrolling=1,width='+iWidth+',height='+iHeight+',left='+iLeft+', top='+iTop+',screenX='+iLeft+',screenY='+iTop+'');
}

