<!--

function popWindow(sPath,sName,sWidth,sHeight)
{
	LeftPosition=(screen.width)?(screen.width-sWidth)/2:100;
	TopPosition=(screen.height)?(screen.height-sHeight)/2:100;
	sFeatures = 'width=' + sWidth + ',height=' + sHeight + ',top='+TopPosition+',left='+LeftPosition+',toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no,location=no,directories=no';
	window.open(sPath,sName,sFeatures);
}


// -->

