function popWindow(frameName, popURL, popWidth, popHeight)

{

	var params = "scrollbars=yes,toolbar=yes,resizable=yes,status=no,width=" + popWidth + ",height=" + popHeight + ",left=0,top=0"

	infoWindow = window.open('', frameName, params);

	infoWindow.location.href = popURL;

	infoWindow.focus();

}