function PopupWindow(strLocation, intWidth, intHeight)
{ 
	 newWindow = window.open (strLocation,'iSOFTWinodw','scrollbars=0,resizable=0,menubar=0,status=0, width=' + intWidth + ', height=' + intHeight);
	 
	 if (parseInt(navigator.appVersion) > 3) {
		x = (screen.width - intWidth) / 2;
		y = (screen.height - intHeight) / 2;
		newWindow.moveTo(x,y);
	}
} 